mirror of
https://github.com/clearlinux/official-images.git
synced 2026-08-22 21:07:43 +00:00
5 lines
165 B
SQL
5 lines
165 B
SQL
CREATE TABLE test (a INT, b INT, c VARCHAR(255));
|
|
INSERT INTO test VALUES (1, 2, 'hello');
|
|
INSERT INTO test VALUES (2, 3, 'goodbye!');
|
|
DELETE FROM test WHERE a = 1;
|