ALTER SOURCE
Modify existing source name.
ALTER TABLE
Modify the structure of an existing table.
ALTER USER
Modify properties of a user.
BEGIN
Start a transaction.
COMMIT
Commit the current transaction.
CREATE CONNECTION
Create a connection between VPCs.
CREATE DATABASE
Create a new database.
CREATE FUNCTION
Create a user-defined function.
CREATE INDEX
Create an index on a column of a table or a materialized view to speed up data retrieval.
CREATE MATERIALIZED VIEW
Create a materialized view.
CREATE SCHEMA
Create a new schema.
CREATE SINK
Create a sink.
CREATE SOURCE
Supported data sources and how to connect RisingWave to the sources.
CREATE TABLE
Create a table.
CREATE USER
Create a new user account.
CREATE VIEW
Create a non-materialized view.
DELETE
Remove rows from a table.
DESCRIBE
Get information about the columns in a table, source, or materialized view.
DROP CONNECTION
Remove a connection.
DROP DATABASE
Remove a database.
DROP FUNCTION
Drop a user-defined function.
DROP INDEX
Remove an index.
DROP MATERIALIZED VIEW
Remove a materialized view.
DROP SCHEMA
Remove a schema.
DROP SINK
Remove a sink.
DROP SOURCE
Remove a source.
DROP TABLE
Remove a table.
DROP USER
Remove a user.
DROP VIEW
Drop a view.
EXPLAIN
Show the execution plan of a statement.
GRANT
Grant a user privileges.
INSERT
Insert new rows of data into a table.
SELECT
Retrieve data from a table or a materialized view.
SET TIME ZONE
Set time zone.
SHOW CLUSTER
Show the details of your RisingWave cluster.
SHOW COLUMNS
Show columns in a table, source, or materialized view.
SHOW CONNECTIONS
Show existing connections.
SHOW CREATE INDEX
Show the query used to create the specified index.
SHOW CREATE MATERIALIZED VIEW
Show the query used to create the specified materialized view.
SHOW CREATE SINK
Show the query used to create the specified sink.
SHOW CREATE SOURCE
Show the query used to create the specified source.
SHOW CREATE TABLE
Show the query used to create the specified table.
SHOW CREATE VIEW
Show the query used to create the specified view.
SHOW DATABASES
Show existing databases.
SHOW FUNCTIONS
Show all user-defined functions.
SHOW INDEXES
Show existing indexes from a particular table.
SHOW INTERNAL TABLES
Show internal tables to learn about the existing internal states.
SHOW MATERIALIZED VIEWS
Show existing materialized views.
SHOW SCHEMAS
Show existing schemas.
SHOW SINKS
Shows all sinks.
SHOW SOURCES
Show existing sources.
SHOW TABLES
Show existing tables.
SHOW VIEWS
Show existing views.
START TRANSACTION
Start a transaction.
UPDATE
Modify existing rows in a table.