0
私はbills
テーブルにcolumn customer_type
とcustomer_id
フィールドを持っています。左の結合テーブル名は、主クエリをダイナミックに構成します。
このcustomer_type
は、お客様がcustomers
テーブルまたはusers
テーブルまたはsuppliers
テーブルにいるかどうかを示します。
customer_type
に従って左結合のクエリを作成する必要があります。
select c.* from bills b
left join ***b.customer_type*** c on c.id = b.customer_id