is there a way to list all the reserved words in mysql using the mysql command-line utility

后端 未结 4 822
轮回少年
轮回少年 2021-01-07 00:45

Is there a way to list all the reserved words in MySQL(5.x) using the command-line utility (mysql)?

4条回答
  •  北恋
    北恋 (楼主)
    2021-01-07 01:10

    There is a mysql schema in MySQL(5.x)

    You can query :

    SELECT * FROM mysql.help_keyword;
    

提交回复
热议问题