i need to create a new table but cannot remember the right syntax ,please send a small example of the syntax
Printable View
i need to create a new table but cannot remember the right syntax ,please send a small example of the syntax
Here's a little example:
Code:CREATE TABLE UserName.TableName
(
Field1 VARCHAR2(255) NULL,
Field2 LONG NULL
)
TABLESPACE TABLE_SPACE_NAME
/