摘要:
SQL查询区分大小写方法 在SQL SERVER 中, 默认 select * from table where column1 = ' xx ' 不区分大小写collate 选择排序 , 可用在查询区分大小写上,例:select * from table where column1 collate 阅读全文
摘要:
1 select p.Id,p.Title,g.* from testPager p 2 inner join pageQuestionGroup g on p.id=g.testPagerId 3 where publicDate is null 4 order by p.id,g.id 5 6 7 8 9 declare @testPagerId int 10... 阅读全文