| connection_find_by | R Documentation |
Finds records in a table matching specified column values. Supports soft-delete patterns where records have a deleted_at column.
connection_find_by(conn, table_name, ..., with_trashed = FALSE)
conn |
Database connection |
table_name |
Name of the table to query |
... |
Named arguments for column = value pairs (e.g., email = "test@example.com") |
with_trashed |
Whether to include soft-deleted records (default: FALSE). Only applies if deleted_at column exists in the table. |
A data frame with matching records, or empty data frame if none found
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.