摘要:
SQLserver中获取文字的全拼音: 1 CREATE function [dbo].[f_GetPinyin](@words nvarchar(2000)) 2 returns varchar(8000) 3 as 4 begin 5 declare @word nchar(1) 6 decla 阅读全文
摘要:
sql server数据库模糊查询语句 确切匹配: select * from hs_user where ID=123 模糊查询 select * from hs_user where ID like '%123%' %为通配符 通配符:(LIKE用于字符串,,,,,如果要对数字进行操作用in.. 阅读全文