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
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 |
What is a Trace frag?Where can we use this?
How to restart SQL Server in single user mode? How to start SQL Server in minimal configuration mode?
What is use of dbcc commands?
What is an execution plan? How would you view the execution plan?
what are the different ways to return the rowcount of a table?
what is a stored procedure and trigger?
Security Question- SQL DBA exparts, need your help...
Is it possible to run multiple publications and different type of publications from the same distribution database? : sql server replication
How to create a testing table with test data in ms sql server?
What do you mean by stored techniques? How would we use it?
what operator performs pattern matching?
How does a profiler work?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)