t-sql查询语法需要注意的地方

/*********************************************************************/
>T-SQL查询语法重点之处
/*********************************************************************/


0.一些需要注意的运算符和通配符
/*********************************************************************/
>不等于:where size<>11
>通配符:'_',%,[],[^]

>sqlserver一次向一个表中插入多行数据:i
	//insert into tongxulu(name,addre,email)
        //select sname,saddress,semail from student;
>通过select into语句将现有表中的数据添加到新表中
	//select sname,saddress,semail into tongxuelu from student;
/*********************************************************************/


1.查询语句的组织
/*********************************************************************/
>//select <列名> 
 //from <表名> 
 //[where <查询条件表达式>] 
 //[order by <排序的列名> [ASC 或 DESC]] 
/*********************************************************************/

2.常用的sqlserver查询语句
/*********************************************************************/
>查询空行
 //select name,sex,age from student where name is null;
 //select name,sex,age from student where name is not null;
>查询返回限制的行数
 //select top 5 name,sex,age from student;
 //返回百分比
 //select top 20 persent name,age,sex from student;
>范围查询
select empno, 
       ename, 
       job, 
       mgr, 
       hiredate, 
       sal, 
       comm, 
       deptno from scott.emp where emp.empno not between 7000 and 7900;
       //这里可以用not between来表示不是在这个范围之内
>分组查询
 //分组返回的代表本组的特殊值
 //分组一般用于进行统计不同类型之间的所占的比例
 //select count(deptno) from scott.emp group by emp.deptno;
 //结果: +--------------+---------+
         +count(DEPTNO) +	  +
	 +--------------+---------+
	 +	1	+   6	  +//表示有6个员工属于这个部门
	 +--------------+---------+
	 +	2       +   6     +
 	 +--------------+---------+
	 +	3	+   3     +
	 +--------------+---------+
//where-->groupby-->having关键词用的顺序
/*********************************************************************/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值