christer99
IS-IT--Management
- Dec 3, 2001
- 247
How would I join two tables, using CROSS JOIN, or another method, if one table might have no rows (it could have rows, but it could also have no rows). There is no common identifier, so CROSS JOIN is the only alternative as I can see it. However, if one table has no data (no rows), the statement gives no output (although the first table has one row of data).
SELECT *
FROM ProgramConf CROSS JOIN
WorkloadConf
SELECT *
FROM ProgramConf CROSS JOIN
WorkloadConf