Programming Blog
(Move to ...)
Programming Blogs
Health Blogs
▼
(Move to ...)
Home
▼
Wednesday, 5 August 2020
Insert Identity Column in a table
insert an
identity
column in that table by using the following code:
ALTER
TABLE
dbo.tablename
ADD
AUTOID
INT
IDENTITY
(
1
,
1
)
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment