minus

@JvmName(name = "minusKey")
operator fun ColumnDeclaring<HStore>.minus(argument: String): HStoreExpression<HStore>(source)

HStore delete-key operator, translated to the - operator in PostgreSQL.


@JvmName(name = "minusKeys")
operator fun ColumnDeclaring<HStore>.minus(argument: TextArray): HStoreExpression<HStore>(source)

HStore delete-keys operator, translated to the - operator in PostgreSQL.


@JvmName(name = "minusMatching")
operator fun ColumnDeclaring<HStore>.minus(expr: ColumnDeclaring<HStore>): HStoreExpression<HStore>(source)
@JvmName(name = "minusMatching")
operator fun ColumnDeclaring<HStore>.minus(argument: HStore): HStoreExpression<HStore>(source)

HStore delete-matching-pairs operator, translated to the - operator in PostgreSQL.