阿木伯 著 |
|
Oracle8中用户名、表名、列名、索引名...可以用中文命名吗? |
|
- 软件环境:
1、Windows NT4.0+ORACLE 8.0.4
2、ORACLE安装路径为:C:\ORANT
- 解释说明:
可以,例如:
SQL> create user 用户1 identified by 密码;
SQL> grant connect,resource to 用户1;
SQL> connect 用户1/密码
SQL> create table 表1(列1 number,列2 date);
SQL> create index 索引1 on 表1(列1);
SQL> drop index 索引1;
SQL> drop table 表1;
|
【最后更新:】 |
|