example sql: ``` CREATE VIRTUAL TABLE email USING fts5(sender, title, body); insert into email (sender, title, body) values ('me', 'hi', 'wassup'); select * from email; ``` From: https://github.com/beekeeper-studio/beekeeper-studio/issues/1597