jlcox
Member³
Create a table called "mytable" with "col1" and "col2" of any datatype. Table name and column names will be uppercased as usual. Edit the table and rename "COL2" to "col3". "col3" will remain in lowercase. SQL will look like this:
create table MYTABLE
(
col1 NUMBER,
"col3" VARCHAR2(3)
)
This is not consistent with previous behavior.
create table MYTABLE
(
col1 NUMBER,
"col3" VARCHAR2(3)
)
This is not consistent with previous behavior.