4.創建數據庫表

語法:

CREATE TABLE table_name

(col_name1 type1 [NOT NULL| NULL]

[{, col_name2 type2 [NOT NULL| NULL]} ...])

A database object (in this case, a table) is always created within a schema of a database. A user can create a table only in a schema for which she has ALTER permissions.

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章