I want to copy data from one table into another table where the columns have different names, and am trying to use the following
SELECT `content` AS `name`, `id` AS `orig_id`
INTO `songs`
FROM `items`
WHERE `categories` LIKE "%30%"
It doesn't work. How should I go about achieving this?