Hi,
i have a table xx with column flg.
it has values like
flg
----
T
G
T
T
G
G
G
G
I want to write a query that would retrieve
count(flg) where flg='G'
and count(flg) where flg='T'
in a single line query.
i have a table xx with column flg.
it has values like
flg
----
T
G
T
T
G
G
G
G
I want to write a query that would retrieve
count(flg) where flg='G'
and count(flg) where flg='T'
in a single line query.
Comment