SQL is not a case sensitive language.
whether your table is named "mYtable" or "MyTable" the query:
SELECT * FROM mytable
will still return results.
it is best practice in MySQL however to use all lowercase for table and database names, column names can be mixed case.