合并记录集
我有一个A表(里面有一个f字段) 我先查询这样的数据Select * From JobMaster Where F !='1waiting' and Convert(Varchar(10), EnDate, 120) = '2007-12-25'
这是查询当天的数据。
select * from Jobmaster where flag !='5closed' 这是查询以前的flag!=5closed的数据
怎么把他们查询的结果合并啊 我想得到上面2条语句的记录集。
SQL语句怎么写????? --------------------编程问答-------------------- Select * From JobMaster Where F !='1waiting' and Convert(Varchar(10), EnDate, 120) = '2007-12-25'
union all
select * from Jobmaster where flag !='5closed'
补充:.NET技术 , ASP.NET