Using below codes makes a table with one column as:
1 2 3 4 5 6 7
CREATE TABLE abc (a VARCHAR(8));
INSERT INTO abc VALUES(1),(2),(3),(4),(5),(6),(7)
But how we can use a method with using (1),(2),(3),(4),(5),(6),(7) , I mean something like 1:7 only?