Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想修改sql_modeTiDB 的。和 MySQL 中的配置方式一样吗?除了使用set命令,如何使用配置文件进行配置?
sql_mode
set
TiDB 中的配置与sql_modeMySQL 中的配置略有不同。TiDB 不支持sql_mode使用配置文件进行配置。
在 TiDB 中,您可以sql_mode使用set如下命令进行修改:set @@global.sql_mode = 'STRICT_TRANS_TABLES';.
set @@global.sql_mode = 'STRICT_TRANS_TABLES';