I have been trying to combine without success using UNIONS and JOINS 4 tables. Each of this tables has just one column and 2 rows and they don't have anything in common. I am trying to create 1 Table that combines them all with all rows aligned.
Example:
Table 1
vegetables
Potato
Tomato
Table 2
Utilities
Knife
Pan
Table 3
Fruits
Orange
Apple
Table 4
Liquids
Wine
Water
Final Table:
vegetables Utilities Fruits Liquids
Potato Knife Orange wine
Tomato Pan Apple Water
Sorry for the weird names, and if this has already been asked. I tried several examples i found around but most of them use a common key to filter, but as the tables have nothing When I tried this examples I ended up with a table with 8 Rows The tables also can variate in amount of rows from 1 to 10, but they if one has 10 they all do.
Thanks in advance.
EDIT: I am using SQL server Express 2012