Insert Queries¶
Rayforce-Py allows you to execute Insert queries in a multiple ways
Inserting a single record¶
Using args:
The order of args has to match the order of the table columns
Using kwargs:
Inserting multiple records¶
Using args:
The order of args has to match the order of the table columns
Using kwargs:
Inplace vs By Reference Operations
The insert() operation can work with both in-memory tables (inplace) and saved tables (by reference).
Learn more about the difference between Inplace and by reference operations.