i want count no of values in a column i.e
enam eempno phoneno
x 1 (98765,09887,096561,87964579,156678,678900876)
that means if i select phone no from table i want to get
total count of phone numbers i.e 6
Answer Posted / venkat
select count(column_name) from table_name;
if u want to count number of phone numbers then use below
from emp table
select count(phno) from emp;
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
Is join same as left join?
How to make a copy values from one column to another in sql?
Does mysql_real_escape_string prevent sql injection?
Can we use ddl statements in stored procedure?
How many commands are in sql?
What are the types of optimization?
What is sql injection owasp?
Why is sql*loader direct path so fast?
What is sql comments?
What does the argument [or replace] do?
How you can copy a file to file content and file to pl/sql table in advance pl/sql?
What is sap sql anywhere?
Is sql developer case sensitive?
How to select random rows from a table?
Explain what is a database?