hi all,
I am writing simple SQL query to join 2 tables A and B.
SELECT * FROM A,B WHERE A.Id=B.Id
How can I select all the columns from A table and only selected ones from B table.
I do not want to write all the column names since they are quite large.
Is their any way to do this ?
(Something like SELECT A.*, B.<column-name> FROM A,B WHERE A.Id=B.Id)
thanx in advance
VB
I am writing simple SQL query to join 2 tables A and B.
SELECT * FROM A,B WHERE A.Id=B.Id
How can I select all the columns from A table and only selected ones from B table.
I do not want to write all the column names since they are quite large.
Is their any way to do this ?
(Something like SELECT A.*, B.<column-name> FROM A,B WHERE A.Id=B.Id)
thanx in advance
VB