I have a table named Car and I want to add this records;
insert into Car
values
('a', 'a'), ('a', 'b'), ('a', 'c'),('b', 'b'), ('b', 'c'), ('c', 'd'), ('d', 'd');
I got this massage: ( ERROR 1062 (23000): Duplicate entry 'a' for key a)
so how I can fix it?