is this a valid mysql statement ?
select * from TableA , TableB ;
if not what is the correct mysql statement for selecting the two tables.
why i think there's something wrong with this is i wrote a mysql statement
select * from TableA, TableB INTO OUTFILE 'c:/test.csv' FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n' ;
and it went to endless loop . when i terminated. the csv file had grown into GBs in size.