I can't understand why sql gave me an error #1064. I just followed the instruction at this
Full Outer Join - Save Output in new table
I tried putting "INSERT" syntax before the "INTO" but the error is the same
SELECT *
INTO newtable
FROM buyers FULL JOIN product
ON product.product_id = buyers.product_id
I expect it to run ok, but mysql gave me this error:
"#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'INTO newtable FROM buyers FULL JOIN product ON product.product_id = buyers.pr' at line 1"