Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Replacing the pesky '
> -----Original Message-----
> From: Thater, William [mailto:ThaterW_at_telergy.net]
>
> try replace(lastname, ' '' ')
In the same way, if you want to create an object (e.g. table or username) with double quotes in the name, you have to use two double quotes.
SQL> create table "my ""favourite"" table" ("my ""favourite"" column" date) ;
Table créée.
SQL> select table_name, column_name from user_tab_columns ;
TABLE_NAME COLUMN_NAME ------------------------------ ------------------------------my "favourite" table my "favourite" column Received on Mon Oct 22 2001 - 12:37:49 CDT
![]() |
![]() |