| Package | Description | 
|---|---|
| org.jooq | The  org.jooqpackage contains jOOQ's public API. | 
| Modifier and Type | Method and Description | 
|---|---|
| MergeOnStep<R> | MergeUsingStep. using(TableLike<?> table)Add the  USINGclause to the SQL standardMERGEstatement | 
| MergeOnStep<R> | MergeUsingStep. usingDual()Add a dummy  USINGclause to the SQL standardMERGEstatement
 
 This results inUSING(SELECT 1 FROM DUAL)for most RDBMS, or
 inUSING(SELECT 1) AS [dummy_table(dummy_field)]in SQL
 Server, where derived tables need to be aliased. | 
Copyright © 2018. All Rights Reserved.