There are two tables that are not related to each other(No foreign keys). How to show them together in MySQL?
TABLE1
TABLE2
Result
You can use this too:
SELECT t2.date, t1.name
FROM table1 t1
CROSS JOIN table2 t2
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With