输入问题?
INSERT INTO table2
(film_id, brief)
VALUES ( 'table2.film_id = table1.film_id ', 'table2.brief = table1.brief ')
WHERE (name = '越狱II18 ')
FROM table1
我把 表1 的影片 越狱II18 的 ID 和 介绍 放到 表2 去,是语法有错,还是根本就不能这么做,J2EE
------解决方案--------------------INSERT INTO table2(film_id, brief)
select film_id, brief
from table1
where name = '越狱II18 '
------解决方案--------------------语法有错,where前面要有select的,