在SQL Server 2005 中创建表和,查询,修改表的基本命令
 
seclet  + 列名 from + 表名      查询相关选项 * 代表查询全部
where  + 查询条件       如where  salary  > 4000 表示查询工资大于四千的内容
在where 子句中的常用操作符有= ,>,<,not,and,between,like,null等。
order by + 列名 desc 或 asc     返回的结果降序或升序排列。asc 表示升序,desc表示降序排列。
示例:在一张employees数据库表中查询工资在4000-5000的员工并且将所得的结果按照降序排列起来。
 
select * from employees
where between 4000 and 5000
order by salary desc
 
 
 修改数据库命令
insert  into + 表名
values |(*,*,*..........)   在表中插入一条记录
 
update + 表名
set  包含要更新的列和每个列的新值
where 指定搜索条件
 
示例:
在employees表中将销售员的工资提高%10.
 
update employees
set salary = salary*1.1
where title = ‘销售员’
 
删除数据
 
delete
from + 表名
where + 搜索条件
 
示例:有一个叫王利的员工离职了,需要在数据库中将她的内容删除。
 
delete from employees
where name = '王利'