码迷,mamicode.com
首页 > 数据库 > 详细

如何删除mysql注释

时间:2019-10-08 16:17:27      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:demo   comm   where   com   注释   只读   不可   update   dem   

Linux命令删除注释

先把库表导出成一个.sql文件,然后使用sed命令删除注释。此种适用于mysql端口不开外网的情况。

$ cat create_table.sql 
create table test1
(
    field_name int comment 字段的注释
)comment=表的注释;

$ sed "s/comment.\.*\//" create_table.sql
create table test1
(
    field_name int 
);

修改information_schema表不可行

update information_schema.COLUMNS set COLUMN_COMMENT = ‘‘ where TABLE_SCHEMA = demo;

执行以上sql发现没有权限,是因为information_schema是只读表。

如何删除mysql注释

标签:demo   comm   where   com   注释   只读   不可   update   dem   

原文地址:https://www.cnblogs.com/aeolian/p/11635716.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!