VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 数据库 > sql数据库 >
  • sql语句大全之数据库的查询

.数据库的查询
简单的select语句语法如下:
Select [ * | all | distinct column1, column2]
From table1 [,table2];
……..distionct   选项,禁止在输出结果里包含重复的行
……..from    子句, 告诉我们从哪些表里获取所需的数据
……..where   子句, 用于给查询添加条件
……..order by  子句,对输出结果进行升序排列
Order by 子句的语法是:
Select [all | * distinct column1, column2, ]
From table1 [ , table2]
Where [condition1 | expression2]
[and | or condition | expression2]
Order by column1 | integer asc | desc ]
……..order by 1  desc    对第一个字段进行降序排列
……..count (*)函数 统计表里的记录数量
语法如下:
Select column [ (*) | column ]
From [table name |  column];
使用字段别名来临时命名表的字段,其语法如下;
Select column_name alias_name
From  table_name;
第8 章节………使用操作符对数据进行分类
比较操作符:
……相等;  (= )
……不相等; ( <> )
……小于;   ( <  )
…….大于;    (  >  )        
逻辑操作符;
…….Is null    用于与null 进行比较 where salary is null
…….between   在最大值和最小值之间的值 where salary between ‘2000’ and ‘3000’
…….in  用于把一个值与一个指定的值进行比较 where salary in (‘2000’, ‘3000’)
…….like  利用通配符把一个值与类似的值进行比较,通配符有,
百分号( % ),下划线( _ )
…….exists    用于搜索指定表里是否存在满足特定条件的记录。Where exists (select *..);
……..unique  
……..all   用于把一个值与另一个集合里的全部值进行比较。Where cost > all (select cost);
……..any  用于把一个值与另一表里任意值进行比较。Whre cost > any (select cost);
……..some 是any的别名,它们可以互换使用。
连接操作符;
……..and   所有连接条件都必须为true,  SQL语句才会执行。
……..or   连接条件里有至少一个是true , SQL语句才会执行 where cost =10 or cost=20
求反操作符
……..<>,!= ( not equal )   where salary <> ‘2000’  where salary != ‘2000’
……..not between       where salary not between ‘2000’ and ‘3000’
……..not like         where salary not like ‘200%’
……..is not null    where salary is not null
……..not exists       where not exists (select  );
……..not unique  
……..not in        操作符in 的求反是 not in  where salary not in (119,13,87,9);
算术操作符
…….. +   ( 加法 )   select salary + bonus , where salary +bonus > ‘40000’
…….. --   (减法)    
……. *   (乘法)
……. /   (除法)

相关教程