Example question: How can I create a table named 'employees' with columns for 'id', 'name', 'age', and 'department'?
Response: To create a table named 'employees' with columns for 'id', 'name', 'age', and 'department', you can use the following SQL query: CREATE TABLE employees (id INT PRIMARY KEY, name VARCHAR(255), age INT, department VARCHAR(255));