MariaDB10.6 sql_safe_updatesの設定を確認する方法

環境
Windows 10 Home 64bit
MariaDB 10.6.4

書式
SELECT @@GLOBAL.sql_safe_updates
「@@GLOBAL.sql_safe_updates」を利用してsql_safe_updatesの設定を取得します。

使用例1
sql_safe_updatesの設定を取得します。
SQl構文
SELECT @@GLOBAL.sql_safe_updates;
実行結果

MariaDB [(none)]> SELECT @@GLOBAL.sql_safe_updates;
+---------------------------+
| @@GLOBAL.sql_safe_updates |
+---------------------------+
|                         0 |
+---------------------------+
1 row in set (0.000 sec)

使用例2
セッションのsql_safe_updatesを確認します。
SQL構文
SELECT @@SESSION.sql_safe_updates

実行結果

MariaDB [(none)]> SELECT @@SESSION.sql_safe_updates;
+----------------------------+
| @@SESSION.sql_safe_updates |
+----------------------------+
|                          0 |
+----------------------------+
1 row in set (0.000 sec)

 

MariaDB

Posted by arkgame