Dear Sir/Madam
I want to do auto increment in azure mobile services table.But i did not have clear idea about that.Can you give me the
Solution for that.i am waiting for your positive response...
Thank you...
Prakash TripathiPosted Apr 23, 2015, 2:24 AM
CREATE TABLE [dbo].[crmProducts](
[PId] [int] IDENTITY(1,1) NOT NULL,
[crmProdid] [varchar](1000) NULL,
[ProductName] [varchar](255) NULL,
[ProductNumber] [varchar](255) NULL
)