create any table
时间: 2023-09-08 15:09:26 浏览: 64
create table
5星 · 资源好评率100%
Sure, here's an example of creating a table in SQL:
```
CREATE TABLE customers (
customer_id INT PRIMARY KEY,
name VARCHAR(50),
email VARCHAR(100),
phone VARCHAR(20)
);
```
This creates a table called "customers" with four columns: "customer_id", "name", "email", and "phone". The "customer_id" column is set as the primary key for the table.
阅读全文