add QueryCreator.deleteFrom([t1, t2, ...])
overload.
#269
Labels
api
Related to library's API
enhancement
New feature or request
greenlit
Ready for implementation
mysql
Related to MySQL
Merge of #241 introduced deletes with joined tables for filtering in databases such as MySQL. This is a real tease for consumers using such a database, as it supports deleting from multiple tables in a single
delete from
query by simply listing multiple tables afterfrom
clause.This is an addition of an overload of
QueryCreator.deleteFrom
with an array of table references as argument. It should behave similarly to the multi-table variant ofQueryCreator.selectFrom
.The text was updated successfully, but these errors were encountered: