mysql设置变量时何时可以使用表达示,何时可以使用M,G等单位
答案:1 悬赏:80 手机版
解决时间 2021-02-04 10:05
- 提问者网友:听门外雪花风
- 2021-02-03 13:59
mysql设置变量时何时可以使用表达示,何时可以使用M,G等单位
最佳答案
- 五星知识达人网友:忘川信使
- 2021-02-03 14:17
在操作符命令下不能使用 运算表达式,可以使用 M,G等单位。
在mysql命令行中,可以使用 运算表达式, 不可以使用M,G等单位。
例: 在OS命令下:
[mysql@localhost mysql]$ mysql --max-allowed-packet=16M -u root -p123456
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 5.6.23-enterprise-commercial-advanced MySQL Enterprise Server - Advanced Edition (Commercial)
[mysql@localhost mysql]$ mysql --max-allowed-packet=16*1024*1024 -u root -p123456
Unknown suffix '*' used for variable 'max_allowed_packet' (value '16*1024*1024')
Warning: option 'max_allowed_packet': unsigned value 0 adjusted to 4096
mysql: Error while setting value '16*1024*1024' to 'max_allowed_packet'
在mysql命令行下
mysql> set global max_allowed_packet=16M;
ERROR 1232 (42000): Incorrect argument type to variable 'max_allowed_packet'
mysql> set global max_allowed_packet=16*1024*1024;
Query OK, 0 rows affected (0.00 sec)
在mysql命令行中,可以使用 运算表达式, 不可以使用M,G等单位。
例: 在OS命令下:
[mysql@localhost mysql]$ mysql --max-allowed-packet=16M -u root -p123456
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 5.6.23-enterprise-commercial-advanced MySQL Enterprise Server - Advanced Edition (Commercial)
[mysql@localhost mysql]$ mysql --max-allowed-packet=16*1024*1024 -u root -p123456
Unknown suffix '*' used for variable 'max_allowed_packet' (value '16*1024*1024')
Warning: option 'max_allowed_packet': unsigned value 0 adjusted to 4096
mysql: Error while setting value '16*1024*1024' to 'max_allowed_packet'
在mysql命令行下
mysql> set global max_allowed_packet=16M;
ERROR 1232 (42000): Incorrect argument type to variable 'max_allowed_packet'
mysql> set global max_allowed_packet=16*1024*1024;
Query OK, 0 rows affected (0.00 sec)
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯