Is it possible to reset only part of the database? I have a database containing 250,000 records. I want to create the second with a tenth of the data in it ...
using
select * from table where id % 10 = 0
and installation
.output out.sql
outputs a file that does not have binary data encoded in the same way as when using
.dump
dump -> the binary data gets encoded as hex bytes
other way -> it gets encoded as some weird string
source
share