Hi guys.
I need to search from several tables in one query, is there any way to achieve this?
I tried
select name from merge('system', 'collations|databases')
it works, but
select * from merge('system', 'collations|databases')
would fail.
Yep my situation is kindof like select *.
I need to get all columns from both tables, and the columns are slightly different in each table.
I with to get a result that:
1. it contains all datas who can pass the filter.
2. for columns not on this table, it would just put value NULL, or missing this column.
Is there any suggestions?
Thanks a lot!