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

2024-12-05 02:19:07
推荐回答(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