I have 2 tables and each table has some 3 columns. i want to get one column such that one column from each table are apended one after the other
eg:- suppose one column in a table contains hai, how, are, you.
and another column in another column contains i, am, fine.
i want a query which gives hai, how, are, you,i,am,fine. in just one column
can anybody give a query for this in sql…
If I understand your schema correctly you have this
Do This:
You will get this:
If you have 3 Columns
Then just do this:
EDIT: Do this if you don’t want to modify any tables.