adspace
how to find out the repeated value from table using groupby
function?
Answer Posted / karthik
select eno,count(1) cnt from emp
group by eno having count(1) > 1;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
If you're given a raw data table, how would perform etl (extract, transform, load) with sql to obtain the data in a desired format?
When should you use an instead of trigger?
What is an indexed view?
How to remove duplicate rows from table except one?
If any stored procedure is encrypted, then can we see its definition in activity monitor?
How to convert numeric expression data types using the cast() function?
do you know how to configure db2 side of the application? : Sql server database administration
Can we do dml on views?
Explain “row_number()” in sql server with an example?
What are the properties of the transaction?
What is a coalesce function?
Can one drop a column from a table?
Why and when do stored procedure recompile?
Can sql servers link to other servers like oracle?
How to provide default values to function parameters?