The following SQL query types are supported:
- SELECT: Retrieve data from a table.
- INSERT: Insert new records into a table.
- UPDATE: Modify existing records in a table.
- DELETE: Remove records from a table.
- CREATE TABLE: Create a new table with specified columns.
- ALTER TABLE: Modify the structure of an existing table.
- DROP TABLE: Delete an existing table.
- TRUNCATE TABLE: Remove all rows from a table without deleting the table itself.