Are Table names in a Query supposed to be Case-SensitIvE in MySQL?
For example, if I do the following:
var query = "SELECT something FROM thAt WHERE this = '". $everything ."'";
If the actual table name is all lowercase, and I use a combination of upper and lowercase in my select query, SHOULD it match? Is table names in queries supposed to be case-(in)sensitive?