Table
The Table type is a named string type representing a SurrealDB table name. It is used with data manipulation functions like Select, Create, Insert, and Delete to target all records in a table.
Package: github.com/surrealdb/surrealdb.go/pkg/models
Source: pkg/models/table.go
Definition
Methods
.String()
Returns the table name as a plain string.
Returns: string
Usage
Table is encoded as CBOR tag 7 when sent over the wire.
See Also
RecordID for targeting specific records
Data manipulation for using tables in CRUD operations