So I am starting SQL and I have the following query
Select * from Material where theme = 'math' or name = 'math';
As far as I know this gets me the values that actually have that exact string 'math' on the theme or on the name. How do I put it if I want that value i.e 'math' also as a substring of the attributes theme or name.
like: dev.mysql.com/doc/refman/5.7/en/….