Read all data from a SQL Table
read_table.Rd
Read all rows of data from a SQL table as either a dataframe stored in memory or as a lazy tibble.
Arguments
- conn
A DBIConnection object, as returned by
DBI::dbConnect()
.- database
Name of database or catalog.
- schema
Name of schema.
- table
Name of table.
- lazy
Bool with default value
FALSE
indicating a tibble in memory will be returned to the user.TRUE
specifies that a lazy tibble will be returned.
See also
Other basics:
append_table()
,
create_table()
,
nuke_table()
,
overwrite_table()
,
survey_table()
,
truncate_table()