SQL Server入门到精通 预备知识 SQL Server 2000简介 SQL Server 连接基础知识 SQL:JOIN之完全用法 通用SQL数据库查询语句精华使用简介 SQL Server 2008几项新特性概述 基础教程 Microsoft SQL Server 2005 概述 SQL Server 2005新特性 Microsoft SQL Server 2005 中的 XML 支持 SQL Server 2005数据库开发概述 SQL Server 2005 Beta2安装及
--高级查询在数据库中用得是最频繁的,也是应用最广泛的。 Ø 基本常用查询 --select select * from student; --all 查询所有 select all sex from student; --distinct 过滤重复 select distinct sex from student; --count 统计 select count(*) from student; select count(sex) from student; select count(dis
1. 基本查询格式
1.1 基本查询
-- select 查询内容 from 查询位置
select NAMEfrom student;
1.2 去重查询
-- 查询结果中存在相同内容,第二个数据不要
select distinct NAME
from student;
-- 不去重
select NAME
from student;
1.3 别名
-- 字段名 as '别名'
select STU_NUM as 'ID', NAME as '姓名', GENDER as '性别'
fro