I was wondering why some tutorials and other MySQL management tools use grave accent (`) in their queries like this one below:
SELECT `TableA`.`FieldA`, `TableA`.`FieldB`, `TableA`.`FieldC`
FROM `Databasename`.`TableA`
When it displays the same result with this query below:
SELECT FieldA, FieldB, FieldC
FROM TableA
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…