Skip to content
New issue

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

Implement rows_* functions #695

Open
6 tasks
markfairbanks opened this issue Nov 15, 2022 · 0 comments
Open
6 tasks

Implement rows_* functions #695

markfairbanks opened this issue Nov 15, 2022 · 0 comments
Labels
feature feature

Comments

@markfairbanks
Copy link
Owner

markfairbanks commented Nov 15, 2022

  • rows_insert() adds new rows (like INSERT). By default, key values in y must not exist in x.
  • rows_append() works like rows_insert() but ignores keys.
  • rows_update() modifies existing rows (like UPDATE). Key values in y must be unique, and, by default, key values in y must exist in x.
  • rows_patch() works like rows_update() but only overwrites NA values.
  • rows_upsert() inserts or updates depending on whether or not the key value in y already exists in x. Key values in y must be unique.
  • rows_delete() deletes rows (like DELETE). By default, key values in y must exist in x.
@markfairbanks markfairbanks added the feature feature label Nov 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature feature
Projects
None yet
Development

No branches or pull requests

1 participant