在我的表中,我有一个包含101014,101015等字符串的列。我想选择所有以15结尾的记录。我问:
SELECT * FROM boxes where substr('production',5,2) = 15
或
SELECT * FROM boxes where substr('production',5) = 15
并且没有返回..
答案 0 :(得分:1)
SELECT * FROM boxes where production like '%15'
或者,如果您想要substr
,而不是:
SELECT * FROM boxes where substr('production',5) = 15
尝试:
SELECT * FROM boxes where substr(production,5) = '15'