SQL Statements
Overview
What is a Statement? 🤨
A statement refers to a single SQL operation or a set of operations that are performed together. Statements include queries, but also a broader set of operations, such as: Retrieve, Add, Update, or Delete Data.
How does a Statement work? 🧐
A statement is like a command or request you give someone, such as “Find all the details about my favorite book.” In Oxla, this would be a SELECT
statement.
When you run a statement in Oxla, the command is processed and the requested operation is performed. This statement can affect the data stored in the table or change the database structure.
The following articles will explain the statements that we support, with examples:
CREATE TABLE Statement
Learn more
CREATE INDEX Statement
Learn more
DROP Statement
Learn more
SELECT Statement
Learn more
INSERT INTO Statement
Learn more
SHOW TABLES Statement
Learn more
DESCRIBE Statement
Learn more
SHOW NODES Statement
Learn more
SET/SHOW Statement
Learn more
COPY FROM Statement
Learn more
COPY TO Statement
Learn more