上一页 1 ··· 329 330 331 332 333 334 335 336 337 ··· 493 下一页
  2013年11月5日
摘要: 简单子查询select * from (select custid, companyname from Sales.Customers where country = N'USA') as USACusts关联子查询select custid, orderid, orderdate, empidfrom Sales.Orders as o1where orderid = (select max(o2.orderid) from Sales.Orders as o2 where o2.custid = o1.custid)select orderid, custid, val.. 阅读全文
posted @ 2013-11-05 09:41 逝者如斯(乎) 阅读(189) 评论(0) 推荐(0)
上一页 1 ··· 329 330 331 332 333 334 335 336 337 ··· 493 下一页