Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How to fetch the last inserted record in a particular table?

Answers were Sorted based on User's Feedback



How to fetch the last inserted record in a particular table?..

Answer / vimal katiyar

daer Archana your answer is nt complete so this s complete query fr last inserted record fetch from table

select * from <tablename> where id=(select max(id) from <table name>)

Is This Answer Correct ?    32 Yes 2 No

How to fetch the last inserted record in a particular table?..

Answer / raji22559

CommanObject.CommandText="Select @@Identity";

** Note: Over a given connection if any insert statement is
executed on a table with identity column , the back end
sql-server for the connection initializes a parameter by
name "@@Identity" with the value of Identity column for the
last inserted record.

Is This Answer Correct ?    18 Yes 8 No

How to fetch the last inserted record in a particular table?..

Answer / skumar

We can use the query like
SELECT TOP 1 ID FROM table ORDER BY ID DESC

Is This Answer Correct ?    11 Yes 2 No

How to fetch the last inserted record in a particular table?..

Answer / nitin kaushik

"select @@identity"
@@identity is used to get the current transaction value .

** Note: Over a given connection if any insert statement is
executed on a table with identity column , the back end
sql-server for the connection initializes a parameter by
name "@@Identity" with the value of Identity column for the
last inserted record.

Is This Answer Correct ?    9 Yes 1 No

How to fetch the last inserted record in a particular table?..

Answer / jk

By using scope_identity

Is This Answer Correct ?    9 Yes 2 No

How to fetch the last inserted record in a particular table?..

Answer / sudhakar sakthivel

select * from tableName where rowid = (select max(rowid)
from tableName);

in oracle

Is This Answer Correct ?    2 Yes 0 No

How to fetch the last inserted record in a particular table?..

Answer / neha

Through this statement, we can retrieve the same:

ds.Tables[0].Rows[ds.Tables[0].Rows.Count-1]

Is This Answer Correct ?    1 Yes 0 No

How to fetch the last inserted record in a particular table?..

Answer / muskaan

if(ds.Tables["tablename"].Rows.Count>0)
{
ds.Tables{"tablename"].Rows.Count-1;
}

Is This Answer Correct ?    3 Yes 4 No

How to fetch the last inserted record in a particular table?..

Answer / shashi

we get data from this Query

ds.table[0].rows.count-1

Is This Answer Correct ?    3 Yes 5 No

How to fetch the last inserted record in a particular table?..

Answer / archana

If a table have identity column then u can fetch the last
inserted record through following query:

"select max(ID) from test"

Is This Answer Correct ?    2 Yes 9 No

Post New Answer

More ADO.NET Interview Questions

How to fetch the last inserted record in a particular table?

10 Answers   CarrizalSoft Technologies, Microsoft,


How to sort the data in Datatable

2 Answers   NetProphet,


What is dataset and datatable in ado.net?

0 Answers  


i have two textboxes one for user name and another for password . i have a table name compare(which contains name,passwod etc.,)my doubt is how compare username textbox with name column and how compare password textbox with passwod column. i want the code

9 Answers   Wipro,


types of Store procedure in Sqlserver2000?

4 Answers  


How many major types of connection objects in ADO.NET?

0 Answers   MCN Solutions,


What is the difference between sqlcommand and sqldataadapter?

0 Answers  


What is a database provider?

2 Answers   BioSys,


what is a dataset?

9 Answers   Choice Solutions,


what purpose of Indexing creating? directly we can search the reqired row with the help of query?what is the use of indexing?

3 Answers  


Explain how to bind the controls(best practice) comboboxes to the data in the dataset?

0 Answers  


What are typed and untyped dataset?

0 Answers  


Categories