
January 8th, 2004, 07:32 AM
|
|
Senior Member
|
|
Join Date: Sep 2003
Location: Canada
Posts: 305
Time spent in forums: 2 h 45 m 20 sec
Reputation Power: 10
|
|
|
Use the CTAS (Create Table As Select) command of SQL, An example is given below:
CREATE TABLE normal2
AS
SELECT a. userid, a.user_name, b.group_id,b.group_name
FROM table1 a, table2 b
WHERE a.user_id = b.user_id
/
It is only an example not the exact query you wanted, but you can modifiy it. Lets see how you accomplish your task.
Regards,
|