阿木伯 著 |
|
Oracle8中用戶(hù)名、表名、列名、索引名...可以用中文命名嗎? |
|
- 軟件環(huán)境:
1、Windows NT4.0+ORACLE 8.0.4
2、ORACLE安裝路徑為:C:\ORANT
- 解釋說(shuō)明:
可以,例如:
SQL> create user 用戶(hù)1 identified by 密碼;
SQL> grant connect,resource to 用戶(hù)1;
SQL> connect 用戶(hù)1/密碼
SQL> create table 表1(列1 number,列2 date);
SQL> create index 索引1 on 表1(列1);
SQL> drop index 索引1;
SQL> drop table 表1;
|
【最后更新:】 |
|