06 2021 档案

IsNullOrWhiteSpace和IsNullOrEmpty区别
摘要:string.IsNullOrEmpty:只能控制null和""string.IsNullOrWhiteSpace:控制null、""、" "(引号里面带空格) 阅读全文

posted @ 2021-06-30 13:40 写个笔记 阅读(210) 评论(0) 推荐(0)

C# 在代码里切换数据库
摘要:strSql = "select DISTINCT GROUPNAME from [172.30.1.133].[Cimes5PRDDB_CN].dbo.AOI_GROUPNAME_SET" 阅读全文

posted @ 2021-06-24 14:51 写个笔记 阅读(167) 评论(0) 推荐(0)

SqlServer分页查询
摘要:例如要从数据库的第10条数据开始查询5条数据,SqlServer查询语句如下: select top 5 * from table_name where id not in( select top 10 id from table_name order by id desc) order by id 阅读全文

posted @ 2021-06-15 14:39 写个笔记 阅读(449) 评论(0) 推荐(0)

导航