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
What are secondary xml indexes?
How to identify current user in ssrs report?
How to modify existing triggers using "alter trigger"?
Can we hide the definition of a stored procedure from a use?
What is attribute hierarchy? : sql server analysis services, ssas
Give some Scenario for Non Clusterd index? Can we write system defined functions in side The Function? Wat is the Unique Datatype?
List all types of constraints in sql server?
How do I find the default sql server instance?
What are the types of dml?
what is spatial nonclustered index
What are the types of resultset?
what is a correlated sub-query? : Sql server database administration
Does group by sort data?
Can we perform backup restore operation on tempdb?
Why can there be only one clustered index and not more than one?