当前位置:   article > 正文

mysql-查询并插入_mysql 查询插入

mysql 查询插入

数据库-查询并插入

简单

INSERT INTO 
`base_company_delivery_address` 
(`create_time`, `create_user`, `update_time`, `update_user`, `is_valid`, 
`company_id`, `address_info`, `electric_fence_id`, `point_type`, `address_short`, 
`province`, `city`, `district`, `contact`, `phone`, `delivery_instructions`) 
select 
		NOW() as create_time,
		5001504 as create_user,
		NOW() as update_time,
		5001504 as update_user,
		1 as is_valid,
		company_id,
		address as address_info,
		0 as electric_fence_id,
		0 as point_type,
		address_short,
		province,
		city,
		district,
		people as contact,
		phone,
		info as delivery_instructions
		from tmp_address
		where 条件
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

复杂

INSERT INTO table1(field1,field2,field3,field4,field5)
select  a.field1,a.field2,a.field3,b.field4,b.field5 from table2  as a
left join  table3 as b on a.filed = b.filed 
where -- 写条件
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/487871
推荐阅读
相关标签
  

闽ICP备14008679号