sql如何判断是否包含空格?
select * from news where title 包含空格
怎样读取出title里面包含有空格的数据?
怎样读取出title标题的第一个字为字母的数据?
2种分别如何写啊?
------解决方案--------------------select * from news where title like '[a-zA-Z]%' 读取出title标题的第一个字为字母的数据
select * from news where title like '% %' 读取出title里面包含有空格的数据
------解决方案--------------------一楼正解