MySQLはselect ... into ...
をサポートしていません ドキュメントで特定
。
代わりに、insert ... select
を使用できます :
insert into `#qa`
select *
from wp_posts
where post_type in ('question', 'answer')
MySQLはselect ... into ...
をサポートしていません ドキュメントで特定
。
代わりに、insert ... select
を使用できます :
insert into `#qa`
select *
from wp_posts
where post_type in ('question', 'answer')