I know MySQL doesn’t have a TOP 1 function for selecting the the first row. So I use limit 1 to do it. But how can I select the first row from two tables (tableX, tableY) at the same time.
like this?
SELECT * FROM Database.tableX
limit 1, Database.tableY limit 1
Just this:
or maybe this?