non-working query The first query:
INSERT INTO `data` (`id`, `data`)
VALUES (NULL, 'more data'); (working)
And the second:
INSERT INTO 'data' ('id', 'data')
VALUES (NULL, 'more data'); (non-working)
Please tell me what is the difference between them cause I learn to use single quote(') for query in school instead of back tick? (`), is it a new feature or is it always what it is?