Goal:
Retrieve the latest guid value in real time after you have inserted the the value in the table
Problem:
Don't know how to do it
Info:
*You can only add a new vale that is address and zip code
*Please take account to that it can be lots of data!
CREATE TABLE [AddressBook]
(
[testID] [uniqueidentifier] NOT NULL default newid(),
[address] [nvarchar](50) NULL,
[zipcode] [nvarchar](50) NULL
)