SQL IN Operator with Select -
i want use in operator in sql select statement following error "cannot perform aggregate function on expression containing aggregate or subquery."
the code using looks follows:
select * table id in (select units table2)
you have use when
instead of where
select * `table` `id` in (select `units` `table2`)
Comments
Post a Comment