exec
create database if not exists foo
----

exec
create table foo.othertable (text varchar(20) primary key, number mediumint)
----

exec
insert into foo.othertable values
    ('a', 4),
    ('b', 2),
    ('c', 0)
----
