So with a table I can go:
SELECT * FROM cartoons WHERE name IN ('bugs bunny','daffy duck','marvin the martian');
which will, of course, pull the three names above from the table. Is there a way to use the IN command when only providing partials? Like:
SELECT * FROM cartoons WHERE name IN ('bugs','duck','martian');
The above would then search the table to give me any name containing "bugs", "duck" or "martian". Of course, it actually won't do that and that's why I'm here. 😉 Is there a way to get that to happen? Merging LIKE with IN?