What does the `
symbol actually mean in MySQL?
This works:
INSERT INTO person(`name`, `roll_no`, `gender`) VALUES('person1', 1, 'male');
Whereas this throws a syntax error:
INSERT INTO person(name, roll_no, gender) VALUES('person1', 1, 'male');