10 2022 档案
摘要:declare @weekDay int=0, @weekStr varchar(10)='',--星期几 @startDate datetime ='2022-10-03', @Endate datetime ='2022-10-09' declare @WeekTable table (Date
阅读全文
摘要:一:使用string.Contains(str)方法 String.Contains对大小写敏感,适用于区分大小写的判断。返回值为bool型 二:使用sring.IndexOf(str)方法 IndexOf 函数对大小写不敏感,适用于不区分大小写的判断。返回值为int型,str 在sring中的索引
阅读全文