Create table kante (v int, n int); INSERT INTO kante VALUES (1,2), (2,3), (3,4), (2,3), (4,5); SELECT * from kante;
INSERT INTO kante(v,n) VALUES (1,2); INSERT INTO kante(v,n) VALUES (2,3);....