.select()
Selects all records in a table, or a specific record, from the database.
Method Syntaxdb.select(thing)
Arguments | Description | ||
---|---|---|---|
thing required | The table name or a |
# Select all records from a table db.select('person') # Select a specific record from a table await db.select(RecordID('person', 'h5wxrf2ewk8xjxosxtyc'))
This function will run the following query in the database.
SELECT * FROM $thing;