ขณะแทรกค่าในแถว เราสามารถใช้ค่าของผลลัพธ์ที่คำนวณได้เองจากนิพจน์ ฟังก์ชัน ฯลฯ นี่คือตัวอย่างที่แสดงให้เห็น -
mysql> Insert into employee(id, emp_name)Select 1+1, Concat_ws(' ','Gaurav', 'Kumar'); Query OK, 1 row affected (0.04 sec) Records: 1 Duplicates: 0 Warnings: 0 mysql> Select * from employee; +------+--------------+ | id | emp_name | +------+--------------+ | 2 | Gaurav Kumar | +------+--------------+ 1 row in set (0.00 sec)