如何在pandas中,根据A dataframe的ID,查询B dataframe中的数据,A和B表存在同样的ID列。类似于SQL的列级子查询:select * from t_class where c_id in (select c_class_id from t_student),A和B是一对多关系。
select * from t_class where c_id in (select c_class_id from t_student)
波斯汪
相关分类