Structure Query Languge

Home

SQL Basic
Knowledge Developer Database Internet Resource
1. การสร้าง Table
2. การปรับปรุง Table
3. การตรวจสอบ Constraint และดัชนี
4. การยกเลิก Primary Key, Constraint, ดัชนี และ Table
5. การสร้างและการลบ View
 
 
SQL
SQL Basic
SQL Query
TABLE,VIEW
 
[an error occurred while processing this directive]

2. การปรับปรุง Table

การปรับปรุง table ใช้คำสั่ง ALTER TABLE สำหรับการเพิ่มคอลัมน์ เปลี่ยนประเภทข้อมูล หรือ เพิ่ม constraints

ไวยากรณ์ ALTER TABLE

ALTER TABLE tablename
ADD column1 data type [column constraint],
[column2 data type [column constrain], ..];

หรือ

ALTER TABLE tablename
ADD [table constraint];

ตัวอย่าง การเพิ่มคอลัมน์

ALTER TABLE employee
ADD ( hiredate DATE,
Comm NUMBER(8,2));

ตัวอย่าง การเพิ่ม Constraint

ALTER TABLE employee
ADD (CONTRAINT employee_primary PRIMARY KEY(employee_id));

การเปลี่ยนแปลงคอลัมน์ หรือ constraint ใช้การยกเลิก คอลัมน์ หรือ constraint ที่ต้องการปรับปรุง แล้วเพิ่ม คอลัมน์ หรือ constraint ใหม่


  

สงวนลิขสิทธิ (C) widebase