unique_table_name {SCDB} | R Documentation |
Create a name for a temporary table
Description
This function is heavily inspired by the unexported dbplyr function unique_table_name
Usage
unique_table_name(scope = "SCDB")
Arguments
scope |
( |
Value
A character string for a table name based on the given scope parameter
Examples
print(unique_table_name()) # SCDB_<10 alphanumerical letters>
print(unique_table_name()) # SCDB_<10 alphanumerical letters>
print(unique_table_name("test")) # test_<10 alphanumerical letters>
print(unique_table_name("test")) # test_<10 alphanumerical letters>
[Package SCDB version 0.5.1 Index]