Dynamic Release Record (2026)
-- Create a databaseCREATE DATABASE wedata_demo_db;

-- Create schemaCREATE SCHEMA demo;-- Create a tableCREATE TABLE demo.user_info (id SERIAL PRIMARY KEY,name VARCHAR(255) NOT NULL);-- Insert dataINSERT INTO demo.user_info (name) VALUES ('Alice'), ('Bob');-- View dataselect * from demo.user_info;-- View the schema of the corresponding databaseSELECT schema_nameFROM information_schema.schemataWHERE catalog_name = 'wedata_demo_db';-- View tables in the corresponding schemaSELECT table_nameFROM information_schema.tablesWHERE table_schema = 'demo';
Was this page helpful?
You can also Contact sales or Submit a Ticket for help.
Help us improve! Rate your documentation experience in 5 mins.
Feedback