<!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman";} code {font-family:"Courier New"; mso-ascii-font-family:"Courier New"; mso-fareast-font-family:"Times New Roman"; mso-hansi-font-family:"Courier New"; mso-bidi-font-family:"Courier New";} pre {margin:0cm; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Courier New"; mso-fareast-font-family:"Times New Roman";} @page Section1 {size:612.0pt 792.0pt; margin:2.0cm 42.5pt 2.0cm 3.0cm; mso-header-margin:36.0pt; mso-footer-margin:36.0pt; mso-paper-source:0;} div.Section1 {page:Section1;} -->
Дана таблица с индексом: create table TABLE_1 (col1 int, col2 int);create unique index INDEX_1_2 on TABLE_1 (col1, col2);
Мы начинаем заполнять ее данными, выполняя по очереди запросы, приведенные ниже. Какие из запросов успешно выполнятся?
- insert into TABLE_1 values (1, 2);
- insert into TABLE_1 values (null, 1);
- insert into TABLE_1 values (null, 1);
- insert into TABLE_1 values (null, null);
К сожалению, у нас пока нет статистики ответов на данный вопрос,
но мы работаем над этим.