Pytanie 88
Wskaż instrukcję, która doprowadzi do utworzenia tabeli w bazie danych (UWAGA: błędy nie są spowodowane różnicą w nazewnictwie typów pól):
create table a(x integer primary key, constraint c check(y<&rt;2));
create table a(x date primary key, constraint c check(x<&rt;current_date));
create table a(x char(20) primary key constraint c foreign key(x) references b);
create table a(x not null integer primary key, constraint c check(x<&rt;2));