0

私は2つのフィールドを持つテーブルを持っています。2つのSQL結果の結果からこれらの2つのフィールドを挿入するにはどうすればよいですか.

 insert into access (user,page)
(select id as user from users where id =5,
select pagename as page from pages where id =10)

2 つのテーブル間に関係はありません。私は参加できないと思います。

4

2 に答える 2

1
insert into access (user,page)
select users.id as user, 
       pages.pagename as page 
from users,pages
where users.id = 5
  and pages.id = 10
于 2013-04-12T17:43:50.047 に答える