4 Please write a querry to find repeated numbers in the
following table.
Table Name: Table1
Field1
10
15
20
15
10
Answer Posted / pritesh
SELECT field1
FROM table1
GROUP BY field1
HAVING COUNT(field1)>1;
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
why would you use sql agent? : Sql server database administration
What type of locking occurs during the snapshot generation? : sql server replication
What is the difference between ddl and dml?
What is the sql profiler?
What is difference between joins and subqueries?
Do you know what are the ways available in sql server to execute sql statements?
Why do we use trigger?
When would you use the stored procedures or functions?
What is TDS(Tabular Data Stream) Gateway?
Explain the properties of a relational table?
What is coalesce and check constraint in sql server?
How and why use sql server?
What is updatable resultset?
Can you create a logon trigger in sql server 2005 express edition?
Tell me the phases a transaction has to undergo?