摘要: SQL字符串函数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 @ 2009-10-20 19:01 Will.Hu 阅读(364) 评论(0) 推荐(0) 编辑