I know union queries have to have the same number of columns. I\'m trying to get results from the table comments and results from the table strings
comments
strings
Add empty columns (null as columnName) to the query that has fewer columns. You should avoid using * in this case, to have better control on order of columns in both queries.
null as columnName
*