SQL LIKE condition to check for integer?

后端 未结 8 792
温柔的废话
温柔的废话 2020-12-01 01:11

I am using a set of SQL LIKE conditions to go through the alphabet and list all items beginning with the appropriate letter, e.g. to get all books where the title starts wit

8条回答
  •  情书的邮戳
    2020-12-01 01:39

    Assuming that you're looking for "numbers that start with 7" rather than "strings that start with 7," maybe something like

    select * from books where convert(char(32), book_id) like '7%'
    

    Or whatever the Postgres equivalent of convert is.

提交回复
热议问题