CREATE TABLE veis( id int not null auto_increment primary key, mass int ); INSERT INTO veis VALUES (null, 400); CREATE TABLE koer( id int not null auto_increment primary key, koeranimi VARCHAR(30) ); INSERT INTO koer VALUES (null, 'Pitsu');