how to retrive only second row from table in sql server
2000?
Answer Posted / vardharaj
SELECT TOP 1 ID FROM TABLENAME WHERE ID NOT IN (SELECT TOP 1
ID FROM TEST)
Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Recommend an approach to ensuring that all changes in the remote databases synchronize with the SQL Azure database?
How to replace the Query Result 'Null Value' with a text ?
Why you need indexing? Where that is stored and what you mean by schema object? For what purpose we are using view?
What is primary key index?
What is user-defined function?
What is use of except clause? How does it differ from not in clause?
What is triggers and its types?
Can you pass expressions to stored procedure parameters?
What are the results of running this script?
What is use of except clause? How it differs from not in clause?
What is 1nf 2nf?
how to avoid cursors? : Sql server database administration
List out what other servers you can use with ssrs?
Hi, I Created 3 Tables Person(PersID[prkey],Name,Email,Password), Project(ProjName,ProjID[prkey],ProjLeader,ProjManager) & ProjectInvolvement(EntryDate,ProjID[frkey],PersID[frkey],ProjDuration). For this how can i INSERT,UPDATE & DELETE Through PROCEDURE? Please Post the Answer for me. Desai.
What is the use of nvl work?