时间字段模糊查询 where convert(varchar,PublishTime,120) like '%2010-11-28%'
SELECT TOP 1000 [SMSGUID]
      ,[Mobiles]
      ,[SmsContent]
      ,[SysInfo]
  FROM [DB_DJSMS].[dbo].[send_SMS]
  
declare @i int
set @i=0
while @i<5000000
begin
insert into send_SMS(Mobiles,SmsContent,SysInfo) values('15986547236','深圳有限公司','天猫')
set @i=@i+1
end

 

相关文章:

  • 2021-10-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-23
猜你喜欢
  • 2021-09-24
  • 2021-11-01
  • 2021-11-21
  • 2021-08-09
  • 2022-02-16
  • 2021-06-21
相关资源
相似解决方案