4 Please write a querry to find repeated numbers in the
following table.
Table Name: Table1
Field1
10
15
20
15
10
Answer Posted / lalit pandey
SELECT field1,count(field1) "Number of Occurrence"
FROM table1
GROUP BY field1
HAVING COUNT(field1)>1;
| Is This Answer Correct ? | 37 Yes | 0 No |
Post New Answer View All Answers
Write a sql query to get zero records from a table having n number of records?
How does index makes search faster?
What is built-in/administrator?
How to create percentile function?
what is hash nonclustered index
Explain hostprotectionattribute in sql server 2005?
What is a domain constraint give an example?
Explain for xml explicit mode?
How to find the login name linked to a given user name?
What is xdr?
How to list all user defined functions in the current database?
Does partitioning improve performance?
How do you create an execution plan?
What are sub reports?
When would you use the stored procedures or functions?