search

Home  >  Q&A  >  body text

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

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

image.png

rainrain1741 days ago1121

reply all(1)I'll reply

  • 城乡结合部部长

    城乡结合部部长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 '爱%'

    reply
    0
  • Cancelreply