1、增加列[add
列名]J
例:alter
table
test
add
username
char(20)
not
null
default
''
2、删除列[drop
列名]
alter
table
test
drop
pid
3、修改列[modife
列名]
alter
table
test
modify
gender
char(4)
not
null
default
''
这上面的SQL语句基本没有变化,<![CDATA[SELECT LAST_INSERT_ID() AS ID ]]>---》SELECT @@IDENTITY
insert into t_docrecord(id,filename,doctype,lastmodify) values
(?,?,?,?) -》
insert into t_docrecord(id,filename,doctype,lastmodify) values
(@id,@filename,@doctype,@lastmodify)
select * from t_docrecord where filename=#value# ->select * from t_docrecord where filename=@filename
下面一样的就不再改了,都改成@ID 开头,到时用SQL命名参数来处理,
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)