博客园不常在线

有问题联系微信

微信号

微信公众号

摘要: 1.current_timestamp :获取数据库系统时间戳 --获取数据库系统时间戳 select current_timestamp go 2.getdate() :获取数据库系统时间戳 --获取数据库系统时间戳 select getdate() go 3.getutcdate() :获取ut 阅读全文
posted @ 2020-07-20 14:46 Code技术分享 阅读(794) 评论(0) 推荐(0)
摘要: 1.ascii() :返回ascii码 --返回ascii码 select ascii('a') go 2.char() :返回ascii对应的字符 --返回ascii对应的字符 select char(65) go 3.charindex() :返回字符串起始位置 --返回字符串起始位置 sele 阅读全文
posted @ 2020-07-20 09:10 Code技术分享 阅读(511) 评论(0) 推荐(0)