<!-- /* 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;} -->
Укажите все insert-выражения, которые корректны для следующей таблицы: CREATE TABLE test ( nr int, lp int, symbol char(2) not null default 'FV', ayear int, PRIMARY KEY(nr, lp));

  • insert into test values (2, 5,, 2001)
  • insert into test values (2001)
  • insert into test values (3, 4, 'AB', 2000)
  • insert into test(nr, lp) values (1, 6)
  • insert into test(nr, lp, ayear, symbol) values (9, 7, 2002, 'PR')
  • insert into test(nr, lp, symbol) values (18, 6, 'KJ')

К сожалению, у нас пока нет статистики ответов на данный вопрос, но мы работаем над этим.