How to find the latest updated value in a table without
sending any parameters to that query

Answers were Sorted based on User's Feedback



How to find the latest updated value in a table without sending any parameters to that query..

Answer / honey

by using scope_identity()

Is This Answer Correct ?    3 Yes 0 No

How to find the latest updated value in a table without sending any parameters to that query..

Answer / honey

SELECT @@IDENTITY
It returns the last IDENTITY value produced on a
connection, regardless of the table that produced the
value, and regardless of the scope of the statement that
produced the value.
@@IDENTITY will return the last identity value entered into
a table in your current session. While @@IDENTITY is
limited to the current session, it is not limited to the
current scope. If you have a trigger on a table that causes
an identity to be created in another table, you will get
the identity that was created last, even if it was the
trigger that created it.

SELECT SCOPE_IDENTITY()
It returns the last IDENTITY value produced on a connection
and by a statement in the same scope, regardless of the
table that produced the value.
SCOPE_IDENTITY(), like @@IDENTITY, will return the last
identity value created in the current session, but it will
also limit it to your current scope as well. In other
words, it will return the last identity value that you
explicitly created, rather than any identity that was
created by a trigger or a user defined function.

SELECT IDENT_CURRENT(‘tablename’)
It returns the last IDENTITY value produced in a table,
regardless of the connection that created the value, and
regardless of the scope of the statement that produced the
value.
IDENT_CURRENT is not limited by scope and session; it is
limited to a specified table. IDENT_CURRENT returns the
identity value generated for a specific table in any
session and any scope.

To avoid the potential problems associated with adding a
trigger later on, always use SCOPE_IDENTITY() to return the
identity of the recently added row in your T SQL Statement
or Stored Procedure.

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More SQL Server Interview Questions

Why we use functions in sql server?

0 Answers  


Can we perform backup restore operation on tempdb?

0 Answers  


Write the Syntax for Cursors.

2 Answers   CarrizalSoft Technologies, HP,


How do I start sql server 2016?

0 Answers  


Explain about Normalization?

0 Answers   Infosys,






Why I am getting "the microsoft .net framework 2.0 in not installed" message?

0 Answers  


What will be query used to get the list of triggers in a database?

0 Answers  


What do you mean by sql server 2005 express management tools?

0 Answers  


When does the auto update index statistics feature in sql server turn itself on?q) what specific conditions database should meet, before you can bulk copy data into it using bcp?

0 Answers  


how can i view structure of table in sql server? tell me that query.

10 Answers  


How to perform key word search in tables?

0 Answers  


Does the unique constraint create an index?

0 Answers  


Categories