SQL-Manual
Last Updated:2021-11-09
Doris provides online and offline SQL manuals.
You can view the online SQL manual using the Help command after connecting to Doris. For example, view how to create a database.
mysql> help create database;
Name: 'CREATE DATABASE'
Description:
This statement is used to create a database.
Syntax:
CREATE DATABASE [IF NOT EXISTS] db_name;
Examples:
1. Create a database db_test
CREATE DATABASE db_test;
This document is an offline SQL manual which details the syntax of SQL.