SQL Server              MySQL
1、getdate()                  NOW()
        
2、top 100                               limit 100
        
3、charindex(':','aaaaaa:a')        LOCATE(':','aaaaaa:a')
        
4、+                                       concat('','')
        
5、len                                     LENGTH
        
6、delete table                         delete from table

7、返回日期之间的秒

datediff(second,getdate(),dateadd(second, r2_expires_in, date))                         TIMESTAMPDIFF(SECOND,NOW(),DATE_ADD(date,INTERVAL numSECOND))

 

相关文章:

  • 2022-02-28
  • 2022-03-04
  • 2021-08-08
  • 2021-11-18
  • 2021-12-16
  • 2022-12-23
  • 2021-11-18
猜你喜欢
  • 2022-12-23
  • 2022-02-27
  • 2021-11-19
  • 2021-12-08
  • 2022-12-23
  • 2022-12-23
  • 2021-05-22
相关资源
相似解决方案