Mysql5.1.72语法注意点

上一篇 / 下一篇  2014-05-09 11:05:08 / 个人分类:学习笔记

alter table bug modify title varchar(10);正确
*/
/*
alter table bug modify column title varchar(10);也正确
*/
/*
alter table bug alter column title varchar(100);语法错误
*/
/*
alter table bug drop column title;正确
*/
/*
alter table bug drop title;正确
*/
/*
insert bug values (1);正确
*/
/*
insert into bug values (2);也正确
*/

TAG:

 

评分:0

我来说两句

Open Toolbar