quote-bot/script2.sql
Bubblegumdrop 60dbee40e3 Initial code commit.
It doesn't do anything useful.
2021-03-08 16:59:27 -05:00

10 lines
549 B
SQL

create table if not exists quotedb (date_added text not null, added_by text not null, subject text not null, words text not null)
insert into quotedb (date_added, added_by , subject, words) values (datetime('now'), 'strike', 'Flisk', "<Flisk> yeah hate when hookers who give free blowjobs won't finger my asshole for free too")
insert into quotedb (date_added, added_by , subject, words) values (datetime('now'), 'oda', 'nimbius', ' * nimbius is no longer thinking about those beans')
select * from quotedb
delete from quotedb
drop table quotedb