Create a new database table query

Here is an example of a new database table query in SQL:

CREATE TABLE customers (
  id INT PRIMARY KEY,
  name VARCHAR(255) NOT NULL,
  email VARCHAR(255) NOT NULL,
  phone VARCHAR(20),
  address VARCHAR(255),
  city VARCHAR(50),
  state VARCHAR(50),
  zip VARCHAR(10),
  country VARCHAR(50)
);

Let me explain what each part of this query does:

This query creates a table called customers with 9 columns: id, name, email, phone, address, city, state, zip, and country. Each column has a specific data type and constraints to ensure that the data stored in the table is valid and consistent.

Note: The exact syntax may vary depending on the specific database management system you are using (e.g. MySQL, PostgreSQL, SQL Server, etc.).