Posts.sql 124 B

123456
  1. use [Sergeichev]
  2. create table Posts (
  3. Code_Post int primary key identity(1,1) not null,
  4. Name_Post varchar(50) not null
  5. )