首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

惯用的sql语句

2013-02-20 
常用的sql语句增加一个列Alter table tabname add column col type?插入:insert into table1(field1,field

常用的sql语句

增加一个列

Alter table tabname add column col type

?

插入:insert into table1(field1,field2) values(value1,value2)

?

删除:delete from table1 where 范围

?

更新:update table1 set field1=value1 where 范围

?

排序:select * from table1 order by field1,field2 [desc]

热点排行