回覆列表
-
1 # 潘德比島
-
2 # 咳特靈膠囊
1、開啟PLSQL,並進行登入;
2、建立測試表,
create table test_create(id number, value varchar2(50));
5、即可檢視到建表語句;
-- Create table
create table TEST_CREATE
(
id NUMBER,
value VARCHAR2(50)
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255;
1、開啟PLSQL,並進行登入。
2、建立測試表,
create table test_create(id number, value varchar2(50));。
5、即可檢視到建表語句;
-- Create table
create table TEST_CREATE
(
id NUMBER,
value VARCHAR2(50)
)
tablespace USERS
pctfree 10
initrans 1
maxtrans 255;。