sql server高级内容之表表达式和复习 1 . 表表达式 (1)将表作为一个源或将查询的一个结果集作为一个源,对源做处理,然后得到一个新的数据源,对其进行查询。 (2) (3)派生表,将表的查询得到的结果集作为一个新的数据源,需要注意一下几点: 1) 派生表必须
sql server高级内容之表表达式和复习
1. 表表达式
(1) 将表作为一个源或将查询的一个结果集作为一个源,对源做处理,然后得到一个新的数据源,香港服务器,服务器空间,对其进行查询。
(2)
(3)派生表,香港虚拟主机,将表的查询得到的结果集作为一个新的数据源,需要注意一下几点:
1)派生表必须有括号括起。
2)派生表需要取别名
3)派生表中的所有字段也要有别名
4)能够作为派生表的只有结果集(游标不行)。
(4)
( s1.stuid, 6 7 s1.stuname, s1.stusex stusex,(yy,s1.stubirthdate,getdate()) as stuage,(varchar(10),s1.stustudydate,101) as stustudydate,20 21 s1.stuemail,22 23 s1.stuphone,24 25 s2.testbase,26 27 s2.testbeyond,28 29 s2.testname,(varchar(10),s2.testdate,101) as testdate,32 33 s3.classname,34 35 s3.classdescriptionstudent as s1score as s2s1.stuid=s2.stuidcourse as s3s1.classid=s3.classids1.stuisdel) as tb1tb1.stuagetb1.stusex
2. sqlhelper的一些知识点
(1) sqlconnection用来连接数据库
(2)sqlcommand用来执行sql语句
1)参数化查询: sqlparameter
2)执行方法
->executenonquery() 执行增删改,返回首影响的行数
->executescalar()
->executereader() 返回datareader
(3)sqldatareader用来读取每一条数据
(4) sqldataadapter封装了以上的所有的类
posted on