mysql - IN clause with multiple columns -
Is there a way to use a query by using these clauses with more than one column of the following column query? ? Instead of using
select from field_a where in field_A (choose from table_b from field 1) select the association * from table_a * where field_a (table_b) Field_2);
I have to create something that would look like the following:
choose from * table_a where field_a (select field 1, field_2 from table_b);
Most of the sub-queries you can get inside the union are:
to table_a where in Field_A (select field_1 from the table_ub association, select field_2 from table_b)
or:
Select * From Table_a where in field_A (select field_1 from table_b) or in field_a (select field_2 from table_b)
Comments
Post a Comment