I have a query wich goes some thing like this...
select count(a.dept),count(a.emp) from ((select Distinct 1,2,3 from (select 1,2,3,4,5 from dept) as a) as b;
1,2,3,4,5 are columns...
When I run this query,it is giving me the error,table/view/procedure a does not exits...
I there any wrong in my query or Is there any other approach...
I would appreciate some one's help..
Thank you....
select count(a.dept),count(a.emp) from ((select Distinct 1,2,3 from (select 1,2,3,4,5 from dept) as a) as b;
1,2,3,4,5 are columns...
When I run this query,it is giving me the error,table/view/procedure a does not exits...
I there any wrong in my query or Is there any other approach...
I would appreciate some one's help..
Thank you....