欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

MySQL连表操作_MySQL

程序员文章站 2022-05-20 15:52:09
...
1、自连接

select * from product where vender_id = (select verder_id from product where name='Dove')

select p1.* from product p1, product p2 where p1.id = p2.id and p2.name = 'Dove'

2、根据同表字段更新

update product p1,product p2 set p1.photo_status = 2

where p1.id = p2.id and p2.photo_status is null

3、连接要有条件,否则将出现笛卡尔积