> 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