SQL statement, how can we query the first character of this field in the data table through a Chinese character?
城乡结合部部长2020-02-19 12:46:00
Use wildcard character %. For example, you want to find a title that starts with "love".
SELECT * FROM Table Where 'title' like '爱%'