摘要: USE tempdb;IF OBJECT_ID('dbo.Orders', 'U') IS NOT NULL DROP TABLE dbo.Orders;GOCREATE TABLE dbo.Orders( orderid INT NOT NULL, orderdate DATE NOT NULL, -- prior to SQL Server 2008 use ... 阅读全文
posted @ 2012-04-11 16:27 MyCoolDog 阅读(858) 评论(1) 推荐(1) 编辑
摘要: --declare @t table(n int)--insert into @t values(0),(1),(2),(3),(4),(5),(6),(7),(8),(9)--select * from @t --返回在2008年1月有订单活动, 而在08年2月没有订单活动的客户和雇员.--select custid, empid from Sales.Orders where orderdat... 阅读全文
posted @ 2012-04-11 13:28 MyCoolDog 阅读(328) 评论(0) 推荐(0) 编辑