I have two tables with columns:
Genres: ID, genre
Adjectives: ID, adjective_title
I need to do a select that returns the matching values from both tables columns with the 'like' syntax.
For example if "ep" was the value entered using 'like' the results would look like:
result_column:
epiphonic (from genres table)
epic (from adjectives table)
etc . . .
I'm pretty sure I need to use a subquery to return the results.