Pytanie 40
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 auto_increment primary key, y integer not null);
create table a (x integer, not null, y date);
create table (x varchar(30) primary key, y real);
create table a (x primary key, y integer);