一个表结构是ID,name,父ID,要求用一句SQL 查出id是1007的所有的父ID

2024年12月05日 02:19
有4个网友回答
网友(1):

id 为字符型
select 父ID form 表 where id = '1007'

id 为数字型
select 父ID form 表 where id = 1007

补充:
update b
set b.name = (select a.name from a where a.id = b.id)

网友(2):

第一个
select 父ID from 表 where id = 1007;

第二个
insert into B (p_id,p_name) (select * from A);

网友(3):

更新b表中的数据
update table_b b,table_a a
where b.p_id = a.p_id
and b.p_name = a.name

查询a表中id为1007的所有的p_id
select a.p_id
from table_a a
where a.id = '1007'

网友(4):

update b
set b.P_NAME=a.P_NAME
where b.P_ID=a.P_ID