SQL statement, how can we query the first word of this field in the data table through a Chinese character?
rain
rain 2020-02-16 10:45:14
0
1
1120

SQL statement, how can we query the first character of this field in the data table through a Chinese character?

image.png

rain
rain

reply all(1)
城乡结合部部长

Use wildcard character %. For example, you want to find a title that starts with "love".

SELECT * FROM Table Where 'title' like '爱%'

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template