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)
第一个
select 父ID from 表 where id = 1007;
第二个
insert into B (p_id,p_name) (select * from A);
更新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'
update b
set b.P_NAME=a.P_NAME
where b.P_ID=a.P_ID