exercism/sqlite/hello-world/create_fixture.sql

3 lines
77 B
SQL

DROP TABLE IF EXISTS hello_world;
CREATE TABLE hello_world (greeting TEXT);