hydrus/db/extract_options.sql

9 lines
265 B
MySQL
Raw Normal View History

2017-01-11 22:31:30 +00:00
.open client.db
.out my_options.sql
.print .open client.db\r\n
.print delete from options;\r\n
.print delete from json_dumps where dump_type = 22;\r\n
.mode insert options
select * from options;
.mode insert json_dumps
select * from json_dumps where dump_type = 22;