Author: Jason Lepack
Date: May 14, 2007 22:03
... other. You could implement a Cartesian join but I don't think that the result of that is what you are looking for... Actually, on further inspection, it may be what you want, so here it is, if it's not,... in SQL View (View -> SQL) in a new Query: SELECT FieldA1, FieldA2, FieldB1, FieldB2,... AS FieldD1 FROM Table_A, Table_B, Table_C Please note that this query will return 4*5*7...
|