有三种方法: .InSert Into <表名>(列名) Select <列名> From <源表名> 如: INSERT INTO TongXunLu (姓名,地址,电子邮件) SELECT SName,SAddress,SEmail FROM Students 这种方法需要先建好新表. 2. Select (列名) Into <表名> From <源表名> 如: SELECT Students.SName,Students.SAddress,…
sql和mysql执行顺序,发现内部机制是一样的.最大区别是在别名的引用上. 一.sql执行顺序 (1) from (3) join (2) on (4) where (5) group by(开始使用select中的别名,后面的语句中都可以使用) (6) avg,sum.... (7) having (8) select (9) distinct (10) order by (11) limit 从这个顺序中我们不难发现,所有的 查询语句都是从from开始执行的,在执行过程中,每个步骤都会为下…
begin drop table #tmptable declare @money ut_money set @money=1.2345 create table #tmptable ( je ut_money ) insert into #tmptable(je) values(@money) select * from #tmptable end 执行结果: 第二段sql begin drop table #tmptable declare @money ut_money set @mone…