Another Little MySQL Problem

Christian Heimes lists at cheimes.de
Wed May 26 18:24:04 EDT 2010


>      Actually, no.  The names of tables are not quoted in SQL.
> One writes
>
> 	SELECT ID FROM mytable;
>
> not
>
> 	SELECT ID FROM "mytable";

nit picking mode:

Some RDBMS support case sensitive table names. You have to quote the 
table name if you using the feature. Yeah I know, it's pretty bad idea 
but it's possible.

Christian




More information about the Python-list mailing list