I have two tables, one of them has weeks of year, and the second table has categories. I need to create a table that contains each week and each category, but there\'s no fi
SELECT * FROM Table1 CROSS JOIN Table2
This will get you every combination of all columns from Table1 and Table2.
Have you tried just
SELECT * FROM table1, table2