I need a Query, example to combine two Select Queries which uses same table and column name and display the result in a Single table
Below is my Scenario
select Column1,count(Column2) as County from table1 where product='undefined' group by status
select Column1,count(Column2) as County from table1 where product='undefined' group by status
Thanks in Advance!