sveden-parser/create_table.sql

11 lines
510 B
MySQL
Raw Normal View History

2024-08-07 10:50:34 +02:00
create table sveden_education_contingent
(
id int not null primary key,
org_id int null,
spec_id int null,
spec_code varchar(100) null comment 'Код',
spec_name text null comment 'Наименование',
edu_level text null comment 'Уровень образования',
edu_forms text null comment 'Формы обучения',
contingent int not null comment 'Общая численность обучающихся'
);