CREATE TABLE Pet (PetID INT NOT NULL, Name VARCHAR(255) NOT NULL, Type VARCHAR(255) NOT NULL, Breed VARCHAR(255) NULL, Age INT NOT NULL, PRIMARY KEY(PetID, name))
Create a table 'Pet' with columns PetID (integer not null), Name (varchar 255 not null), Type (varchar 255 not null), Breed (varchar 255 null), Age (integer not null), with a composite primary key on PetID and name