One column LIKE another column
Can one ask for the content of a field in a like condition?
Can one ask for the content of a field in a like condition? As in the SQL statement:
Continue Reading This Article
Enjoy this article as well as all of our content, including E-Guides, news, tips and more.
select * from table1 as a, table2 as b where a.field1 like '%b.field2%'
Yes.
select a.foo , a.bar , a.field1 , b.qux , b.fap , b.field2 from table1 as a inner join table2 as b on a.field1 like '%' || b.field2 || '%'
Please don't use the dreaded, evil "select star." Please always try to write your joins using JOIN syntax, not the older style which lists tables using commas.
Are you surprised to see something other than an equals sign in the ON clause? Joins condition can actually be written with all kinds of comparison operators.