Skip to main content

User Guide/Interface

Follow the instructions in the README of the CLI repository to run the RookDB Interface. Once it is running, the interface will start accepting SQL queries.

  • Once the interface is running, you can enter standard SQL queries.

Supported Statements

  • SHOW DATABASES;

    • To list all the databases.
  • SHOW TABLES;

    • To list all the tables of a database.
  • CREATE DATABASE db_name;

    • To create a new database with name db_name.
  • USE db_name;

    • Select a database.
  • create table user (id INT, name TEXT);

    • Create a new table.