注册
找回密码
账号 记住
1774
2
92
5
0
SQL标签查询语句不能使用substring函数,语句以下:
select ID,Title,substring(KeyWords,1,100),KS_alldate from KS_Article where KeyWords like '%{$Param(0)}%' order id desc提示出错
请教应用什么函数提取字符串
571
3
653
10
17
acc不支持的
如果你只要左边几个字符 可以用
left函数
left(Title,3) as title
也可以在循环体里面使用截取文字字数就可以了