Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MySQL

เราจะแทรกค่าลงในตารางด้วยความช่วยเหลือของผลลัพธ์ที่คำนวณด้วยตนเองของ MySQL ได้อย่างไร


เราสามารถแทรกค่าลงในตารางด้วยความช่วยเหลือของผลลัพธ์ที่คำนวณเองซึ่งส่งคืนโดย MySQL ในกรณีนี้ เราไม่จำเป็นต้องใช้ตารางจำลอง 'คู่' ไวยากรณ์สามารถเป็นดังนี้ −

INSERT INTO table_name(column1,column2,column3,…) Select value1,value2,value3,…;

ตัวอย่าง

ในตัวอย่างด้านล่าง เราได้แทรกค่าในตาราง 'การทดสอบ' โดยใช้เอาต์พุตที่คำนวณเองของ MySQL

mysql> Create table testing(id int, item_name varchar(10));
Query OK, 0 rows affected (0.15 sec)

mysql> Insert into testing (id,item_name)Select 1,'Book';
Query OK, 1 row affected (0.11 sec)
Records: 1 Duplicates: 0 Warnings: 0

mysql> Insert into testing (id,item_name)Select 2,'Pen';
Query OK, 1 row affected (0.11 sec)
Records: 1 Duplicates: 0 Warnings: 0

mysql> select * from testing;

+------+-----------+
| id   | item_name |
+------+-----------+
| 1    | Book      |
| 2    | Pen       |
+------+-----------+

2 rows in set (0.00 sec)