IN Oracle sql How to count different values in one column of table in Oracle 10g,11g,12c
wher you want to select multiple values from single oracle filed just use the below sql query with group by clause.
"""SELECT ssc_dakhil, count(*)
FROM test_teacher_ssc_info
GROUP BY ssc_dakhil; '''''
No comments:
Post a Comment