本篇文章给大家带来了关于SQL server的相关知识,通过使用 SQL,可以为表名称或列名称指定别名,下面介绍了关于sql查询给表起别名要点(涉及嵌套查询)的相关资料,希望对大家有帮助。
推荐学习:《SQL教程》
但是注意如果操作的数据库是Oracle的话,只能使用空格,as不符合Oracle的语法。
举个栗子
select * from student s where s.id = '10';
在简单的查询中使用别名,一般没有特别需要注意的地方,要做的操作少
题目概要:有三个表格,student(sno,sname,ssex,sbirthday,class)
score(sno,cno,degree)
course(cno,cname,tno)
查询选修“3-105”课程的成绩高于“109”号同学成绩的所有同学的记录。
答案:
select * from (select s.sno,s.sname,s.ssex,s.sbirthday,s.class, sc.degree,c.cno,c.cname,c.tno from student s , course c ,score sc where s.sno = sc.sno and c.cno = sc.cno) ss where ss.cno = '3-105' and ss.degree >( select degree from score where sno = '109' and cno = '3-105');
可以看到,为了方便操作,我们重新定义了一个表格ss,这个表格是一个大表格同时包含了,以上三个表中的内容。但是要注意以下几点,不然容易出错
要全部显示新定义表格的值时,不能直接使用*
比如声明的答案中如果改为
select * from (select * from student s , course c ,score sc where s.sno = sc.sno and c.cno = sc.cno) ss where ss.cno = '3-105' and ss.degree >( select degree from score where sno = '109' and cno = '3-105');
命令行会显示列未明确定义,因为我们要现在指定的列作为一个新的表,但是有些列的列名是重复的,我们需要指定其中的一个。
在嵌套查询语句中无法使用新创的表,因为嵌套查询里面的代码是一个完整的执行段,会从头开始运行?反正在里面调用会报错
select * from (select * from student s , course c ,score sc where s.sno = sc.sno and c.cno = sc.cno) ss where ss.cno = '3-105' and ss.degree >( select degree from ss where sno = '109' and cno = '3-105');
这段SQL里面在where里面的子查询使用了ss新表,编译会显示表或视图不存在错误。
推荐学习:《SQL教程》
以上是SQL查询给表起别名要点(总结分享)的详细内容。更多信息请关注PHP中文网其他相关文章!