mysql insert select

INSERT INTO `sys_params` (
	`name`,
	`resx_key`,
	`value`,
	`creator_id`,
	`create_time`,
	`update_by`,
	`update_time`,
	`data_type`,
	`add_redis`,
	`sort_type`,
	`remark`,
	`company_id`
)
SELECT
		'enable_offer_qanda',
		'sys.params.enable_offer_qanda',
		'True',
		'system',
		'20200520143116',
		'',
		'20200720142205',
		'bool',
		'1',
		'悬赏功能',
		'悬赏功能-问答社区',
		id

FROM
	comm_company

  

原文地址:https://www.cnblogs.com/deepalley/p/13345774.html