Table name: T1, it has only one column.

col1
------
c
b
a
b
b
b
b
d
s
a
a
t
s


Requirement:

I need the following output from the above base table by
using SQL query.


col1 Cnt
----- -------
a 3
b 5
Others 5


Please help.

Thanks
Guru
v.gurus@in.com








Answers were Sorted based on User's Feedback



Table name: T1, it has only one column. col1 ------ c b a b b b b d s a a t s ..

Answer / vinu

select decode (col1,'a','a','b','b','others') col1,count(col1) from T1 group by decode (col1,'a','a','b','b','others')

Is This Answer Correct ?    9 Yes 2 No

Table name: T1, it has only one column. col1 ------ c b a b b b b d s a a t s ..

Answer / manas

select col1,count(*)cnt from T1 group by col1

Is This Answer Correct ?    8 Yes 2 No

Table name: T1, it has only one column. col1 ------ c b a b b b b d s a a t s ..

Answer / vikneswaran

select decode(col1,'a','a','b','b','Other') "col1",count
(col1) "countval"
from col group by decode(col1,'a','a','b','b','Other');

Is This Answer Correct ?    1 Yes 0 No

Table name: T1, it has only one column. col1 ------ c b a b b b b d s a a t s ..

Answer / rakesh prasad

select name ,count(name)as cnt from (
select case when ((name ='a') or (name = 'b') )then name
else
'others' end as 'name' from tbl_count ) as temp group by
name

Is This Answer Correct ?    1 Yes 0 No

Table name: T1, it has only one column. col1 ------ c b a b b b b d s a a t s ..

Answer / sandhya

SELECT col1, count(*) cnt
FROM T1
GROUP BY col1
ODER BY col1

Is This Answer Correct ?    2 Yes 1 No

Table name: T1, it has only one column. col1 ------ c b a b b b b d s a a t s ..

Answer / vivek nagarajan

SELECT SUM(DECODE(txt,'a',1)) a_count,
SUM(DECODE(txt,'b',1)) b_count,
SUM(DECODE(txt,'a',0,'b',0,1)) others_count
FROM t1;

Is This Answer Correct ?    2 Yes 2 No

Table name: T1, it has only one column. col1 ------ c b a b b b b d s a a t s ..

Answer / kumarvijay

select decode(dept_id,1,1,2,2,0) "cnt" ,count(decode
(dept_id,1,1,2,2,0))
from deps group by decode(dept_id,1,1,2,2,0);

Is This Answer Correct ?    0 Yes 0 No

Table name: T1, it has only one column. col1 ------ c b a b b b b d s a a t s ..

Answer / sankarapandian

SELECT SUM(case when col1='a' then 1 else 0 end) a_count,
SUM(case when col1='b' then 1 else 0 end)
b_count,
sum(case when col1!='a' and col1!='b' then 1
else 0 end)other_count
FROM t1

Is This Answer Correct ?    0 Yes 0 No

Table name: T1, it has only one column. col1 ------ c b a b b b b d s a a t s ..

Answer / vikneswaran

select decode(col1,'a','a','b','b','Other') "col1",count
(col1) "countval"
from col group by col1;

Is This Answer Correct ?    0 Yes 2 No

Table name: T1, it has only one column. col1 ------ c b a b b b b d s a a t s ..

Answer / purushotham

SELECT PROD_CODE ,COUNT(1) FROM TFT_P_PROD WHERE
BRCH_CODE='784'
GROUP BY PROD_CODE;

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More SQL PLSQL Interview Questions

How do you pronounce sql?

0 Answers  


What are three advantages to using sql?

0 Answers  


What is difference between function and trigger?

0 Answers  


write a query to delete similar records in particular fields(columns) in different tables

6 Answers   TCS,


How many sql are there?

0 Answers  






Explain what is a field in a database and record in a database?

0 Answers  


What is a table?

0 Answers  


What is sql data?

0 Answers  


Write a query to genarate target column.Please answer me. Advance Thanks. Src Tgt Q10 Quarter to 2010 Q90 Quarter to 1990 Q80 Quarter to 1980 Q74 Quarter to 1974

5 Answers   Infosys,


Is drop table faster than truncate?

0 Answers  


What is the maximum size of sqlite database?

0 Answers  


i have a table with column sno with 30 records. i want to update this column by item by item in asp.net. i wantto enter new values into that from 1 to 30 how is it possible with backend c#

1 Answers  


Categories