in reply to Re: OT: benefits of database normalization
in thread OT: benefits of database normalization
"Also, btw, both "name" and "type" are SQL reserved words and should not be used as column names unless they are quoted."
Not true, at least not true to all database implementation. I just tried this in Oracle, and it worked with no problem:
create table temp(type number(1), name number(1))
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: OT: benefits of database normalization
by jZed (Prior) on Oct 03, 2004 at 05:10 UTC |