I have two tables with columns:
Genres
ID
genre
and
Adjectives
ID
adjective_title
I need to make a selection that returns matching values from both columns of tables with syntax like.
For example, if ep were entered with like, the results would look like this:
result_column:
--------------
epiphonic -- (from genres table)
epic -- (from adjectives table)
etc.,.
I'm sure I need to use a subquery to return results.
source
share