Car_Condition.sql 141 B

1234567
  1. use [Sergeichev]
  2. create table Car_Condition
  3. (
  4. Code_Condition int primary key identity(1,1) not null,
  5. Name_Condition nvarchar(8) not null
  6. )