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')