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