Computer Science, asked by nitishrava28gmailcom, 8 months ago

Name any two properties for creating a table​

Answers

Answered by srikri600
3

Answer:

Use the CREATE TABLE statement to create one of the following types of tables:

A relational table, which is the basic structure to hold user data.

An object table, which is a table that uses an object type for a column definition. An object table is explicitly defined to hold object instances of a particular type.

Answered by shehreen2008
1

CREATE TABLE

Purpose

Use the CREATE TABLE statement to create one of the following types of tables:

A relational table, which is the basic structure to hold user data.

An object table, which is a table that uses an object type for a column definition. An object table is explicitly defined to hold object instances of a particular type.

You can also create an object type and then use it in a column when creating a relational table.

Tables are created with no data unless a subquery is specified. You can add rows to a table with the INSERT statement. After creating a table, you can define additional columns, partitions, and integrity constraints with the ADD clause of the ALTER TABLE statement. You can change the definition of an existing column or partition with the MODIFY clause of the ALTER TABLE statement.

Similar questions