MySQL 8.0 Reference Manual Including MySQL NDB Cluster 8.0
You can also use X DevAPI to work with relational tables. In
MySQL, each relational table is associated with a particular
storage engine. The examples in this section use
InnoDB
tables in the
world_x
schema.
To show the schema that is assigned to the db
global variable, issue db
.
mysql-js> db
<Schema:world_x>
If the returned value is not Schema:world_x
,
set the db
variable as follows:
mysql-js> \use world_x
Schema `world_x` accessible through db.
To display all relational tables in the world_x
schema, use the getTables()
method on the
db
object.
mysql-js> db.getTables()
{
"city": <Table:city>,
"country": <Table:country>,
"countrylanguage": <Table:countrylanguage>
}
Basic operations scoped by tables include:
Operation form | Description |
---|---|
db. |
The insert() method inserts one or more records into the named table. |
db. |
The select() method returns some or all records in the named table. |
db. |
The update() method updates records in the named table. |
db. |
The delete() method deletes one or more records from the named table. |
See Working with Relational Tables for more information.
CRUD EBNF Definitions provides a complete list of operations.
See Section 20.3.2, “Download and Import world_x Database”
for instructions on setting up the world_x
schema sample.