SQL statement, how can we query the first character of this field in the data table through a Chinese character?
Use wildcard character %. For example, you want to find a title that starts with "love".
SELECT * FROM Table Where 'title' like '爱%'
Use wildcard character %. For example, you want to find a title that starts with "love".
SELECT * FROM Table Where 'title' like '爱%'