1
CREATE TABLE test(id integer, nazwa text);
2
INSERT INTO test VALUES (1,'Nazwa 1');
3
INSERT INTO test VALUES (2,'Nazwa 2');
4
INSERT INTO test VALUES (3,'Nazwa 3');
5
SELECT * FROM test;
Wyniki zostaną wyświetlone tutaj
CREATE TABLE test(id integer, nazwa text);
INSERT INTO test VALUES (1,'Nazwa 1');
INSERT INTO test VALUES (2,'Nazwa 2');
INSERT INTO test VALUES (3,'Nazwa 3');
SELECT * FROM test;
Wyniki zostaną wyświetlone tutaj