多表查询

			select
            t_doctor_products_problem.content as content,
            t_doctor_products_problem.problem as problem,
            t_doctor_product.id as id
            from t_doctor_product
            left JOIN t_doctor_products_problem
            on t_doctor_products_problem.product_id = t_doctor_product.id
            WHERE 1 = 1
            
            and t_doctor_products_problem.product_id = #{doctorProduct.id,jdbcType=VARCHAR}
            

上面是一个多表查询的例子,
查询的数据是两个表的内容
通过 t_doctor_product这个表的id去查的两个表的内容
left join 所要关联的表的名称
on 通过两个表的某个字段关联起来

你可能感兴趣的:(多表查询)