MariaDB sql_safe_updatesの設定を取得する方法

環境
MariaDB 10.6.4
Windows 10 Home 64bit

構文
SELECT @@GLOBAL.sql_safe_updates
sql_safe_updatesの設定を取得するには、「@@GLOBAL.sql_safe_updates」を確認します。

使用例
SELECT @@GLOBAL.sql_safe_updates

実行結果

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

 

MariaDB

Posted by arkgame