M
mls via AccessMonster.com
I have to join 2 tables.
I created a table with all the field names as place holder called "DUMMY
TABLE", and I have another table with real values called "ABC table". Now I
need to merge both the tables and should have only one column for each field.
say for example date is present in both tables. I have to keep date from
abc_val and ignore date from dummy table. i.e how can I overide the dummy
fields
I don't have any joining conditions for these tables
SELECT temp.*, abc_val.* from dummy temp, abc_xl abc_val;
I created a table with all the field names as place holder called "DUMMY
TABLE", and I have another table with real values called "ABC table". Now I
need to merge both the tables and should have only one column for each field.
say for example date is present in both tables. I have to keep date from
abc_val and ignore date from dummy table. i.e how can I overide the dummy
fields
I don't have any joining conditions for these tables
SELECT temp.*, abc_val.* from dummy temp, abc_xl abc_val;