But unless the two tables are related you will have problems. Let's say you have two completely unrelated tables, table one, which has two columns with the following records:
Col1 Col2
==== ====
A AA
B BB
C CC
And you have another table with the follwoing two columns:
Col1 Col2
==== ====
1 11
2 22
3 33
4 44
5 55
And you run the query
SELECT t1.col1, t1.col2, t2.col1, t2.col2
FROM table1 AS t1, table2 AS t2;
You will get:
T1.col1 T1.col2 T2.col1 T2.col2
======= ======= ======= =======
A AA 1 11
B BB 2 22
C CC 3 33
C CC 4 44
C CC 5 55
You see how the C and CC's overlap because it reached the end of the records for table1 but not for table2. This is bad format for SQL queries...
Justin