I read the answer. How can I do same for bunch insert?
I have list of items, and I insert these items:
tbl ++= items
each item is just Item(id:String, text:String), id is primary key.
I want to insert only not existed items in table tbl using one sql query.
Slick 3, postgresql