This repository has been archived by the owner on Feb 26, 2022. It is now read-only.
Adds the ability to exclude columns in the column list. So it is possible to write queries like:
insert into some_table(version, name, {exclude version, name})
select ? as version, ? as name, {exclude version, name}
from some_table
where some_column = ?