0
Q:

how to create a table in sql stack overflow

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

New to Communities?

Join the community