Skip to content

Latest commit

 

History

History
254 lines (239 loc) · 12.5 KB

README.org

File metadata and controls

254 lines (239 loc) · 12.5 KB

ob-duckdb

https://orgmode.org/worg/org-contrib/babel/languages/ob-doc-sqlite.html

.help
create table if not exists remarks(type varchar(10), instance varchar(100));
insert into remarks values('thing', 'the universe');
insert into remarks values('stuff', 'peanut butter');
--select instance from remarks where type = 'stuff'
select * from remarks;
thingthe universe
stuffpeanut butter
.help
exec 2>&1
sqlite3 --help
:
exec 2>&1
duckdb --help
: