postgresql 建表查询语句
时间: 2024-01-16 10:04:49 浏览: 87
以下是一个示例的PostgreSQL建表查询语句:
```sql
-- 创建info表
CREATE TABLE info (
id SERIAL PRIMARY KEY,
name VARCHAR(50),
email VARCHAR(100),
depart_id INT
);
-- 创建depart表
CREATE TABLE depart (
id SERIAL PRIMARY KEY,
title VARCHAR(50)
);
```
这个示例中,我们创建了两个表:info和depart。info表包含了id、name、email和depart_id四个字段,其中id是主键。depart表包含了id和title两个字段,其中id也是主键。
相关问题
postgresql建表语句
Sure, I can help you with that. Please provide me with the specifications of the table you want to create so that I can assist you with the PostgreSQL create table statement.
postgresql查询建表语句
在PostgreSQL中,你可以使用以下命令查询表的建表语句:
```sql
\d+ 表名
```
例如,如果你要查询名为"students"的表的建表语句,可以使用以下命令:
```sql
\d+ students
```
执行该命令后,你将会得到一份详细的表信息,其中包括了该表的建表语句。在结果中,你需要查找"Create Table"一栏,就可以找到该表的建表语句了。
阅读全文