Online SQL interpreter

Typ int (integer)

 
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