Forum Moderators: open
Thanks for reading at first, I've (in my opinion) a quite complex problem. I am trying to build a MySQL query which can get all unique values from one columnname from different tables. Visualised;
For example I have a shop which sells different products every month, how can I call every product?
Table January;
Hotdogs
Sausages
Cold Drinks
Table February;
Cold Drinks
Hot Drinks
Sausages
How can I query the database the way I get the following result;
Hotdogs
Sausages
Cold Drinks
Hot Drinks
Thanks for the support!
Name Product ----- Price January --- Price February
Cold Drinks ----- $2 --- $3
etc.
etc.
etc.
Thanks in advance!
Rando