在一行中插入值時,我們可以使用任何表達式、函數等自計算輸出的值。下面是一個示例來演示它 –
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)
登錄后復制
以上就是我們如何使用 MySQL 自計算的任何表達式、函數等的輸出來在行中插入值?的詳細內容,更多請關注www.92cms.cn其它相關文章!