2010年9月25日

SQL Server函数大全

摘要: select语句中只能使用sql函数对字段进行操作(链接sql server),select 字段1 from 表1 where 字段1.IndexOf("云")=1;这条语句不对的原因是indexof()函数不是sql函数,改成sql对应的函数就可以了。left()是sql函数。select 字段1 from 表1 where charindex('云',字段1)=1; 字符串函数对二进制数据、... 阅读全文

posted @ 2010-09-25 16:39 八度空间 阅读(1799) 评论(0) 推荐(0)

导航