I have this table and SQL syntax :
INSERT INTO robo_pathfinder (date, robo, timestamp, seq, max_seq, symbol, base, quote, action, qty, price, pay, pay_coin, get, get_coin, position)
VALUES ('2020-08-26 05:33:42', '0', '1598394823856', '3', '3', 'XRPUSDT', 'XRP', 'USDT', 'SELL', '36.3', '0.27814', '36.3', 'XRP', '10.08638552', 'USDT', '')
and I keep getting this error message :
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'get, get_coin, position)
VALUES ('2020-08-26 05:33:42', '0', '1598394823856', '3' at line 1
I'm using MySQL 5.7.31
That syntax works fine on MariaDB. But why doesn't work on MySQL?