sql server 2005 - How to get last inserted value of a Specific column in SQL? -


is there way ident_current() retrieve specific value specific column

we consider need retrieve product_code product table-

  select last (product_code) product; 

or else can try this

  select ident_current(product_code) alias product; 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -