We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rows_*
rows_insert()
INSERT
y
x
rows_append()
rows_update()
UPDATE
rows_patch()
NA
rows_upsert()
rows_delete()
DELETE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
rows_insert()
adds new rows (likeINSERT
). By default, key values iny
must not exist inx
.rows_append()
works likerows_insert()
but ignores keys.rows_update()
modifies existing rows (likeUPDATE
). Key values iny
must be unique, and, by default, key values iny
must exist inx
.rows_patch()
works likerows_update()
but only overwritesNA
values.rows_upsert()
inserts or updates depending on whether or not the key value iny
already exists inx
. Key values iny
must be unique.rows_delete()
deletes rows (likeDELETE
). By default, key values iny
must exist inx
.The text was updated successfully, but these errors were encountered: