เป็นคำสั่งที่ใช้สำหรับเพิ่มข้อมูลลงในตาราง (Table) โดยเป็น Syntax ของ MySQL ที่สามารถกำหนดตำแหน่งของ Column และ Value รูปแบบนี้ง่ายต่อการตรวจสอบ
Database : MySQL
Syntax
INSERT INTO [Table-Name] SET Column1 = 'Value1' , Column2 = 'Value2' , ...
Table : country
CountryCode
|
CountryName
|
---|---|
TH
| Thailand |
EN
| English |
US
| United states |
Sample1 การเพิ่มข้อมูลลงใน Table
INSERT INTO country SET CountryCode =''CH'' ,CountryName = 'Chaina'
Output
CountryCode
|
CountryName
|
---|---|
TH
| Thailand |
EN
| English |
US
| United states |
CH
| Chaina |
ที่มา : http://www.thaicreate.com/tutorial/sql-insert-into-set.html
ไม่มีความคิดเห็น:
แสดงความคิดเห็น