SQLite query to match text string in column SQLite query to match text string in column sql sql

SQLite query to match text string in column


You can use wildcard characters: %

select * from table where name like '%BMW%'


I think you are looking for something like

SELECT * FROM TableWHERE Column LIKE '%BMW%'

the % are wildcards for the LIKE statement.

More information can be found HERE


select * from table where name like '%BMW%'