Hi
I am inserting values in a table directly without writing the query for create table.
The columns I am using are Id(uniqueidentifier,primarykey),Name(varchar).Now I can insert the Name values directly but how can the GUID can automatically generated when I move from one row to other row?Because when I dont insert anything thinking it would be generated and moving on to next row it is giving error :Column values cannot be null.How to fix it?
Thanks,..
Loading
Sukesh MarlaPosted Sep 11, 2012, 3:03 AM
NewId() function gernerates and returns UniqueIdentifier value
Or Even in Insert query call this functiion to explictly insert the value,.
Check this is correct answeer if it helped.