在postgresql中为非空约束创建声明的方法:1.启动postgresql服务;2.登录postgresql数据库;3.使用数据库;4.执行命令新建表并创建约束声明;
具体步骤如下:
1.首先,在命令行中启动postgresql服务;
net start postgresql
2.postgresql服务启动后,在命令行中登录到postgresql数据库;
psql -h -U
3.登录到postgresql数据库后,在postgresql选择一个数据库并使用;
\c text
4.最后,进入到数据库后,在数据库中新建一个数据表,并创建约束声明;
create table prefer(
id int NOT NULL,
name varchar(20),
price int
);