怎么在postgresql中对主键进行操作 pgsql设置主键

主机教程 建站分享 2年前 (2022-12-16) 165次浏览

文章摘要:怎么在postgresql中对主键进行操作 pgsql设置主键

在postgresql中操作主键的方法:1.启动postgresql服务;2.登录postgresql数据库; […]

在postgresql中操作主键的方法:1.启动postgresql服务;2.登录postgresql数据库;3.使用数据库;4.在数据库新建表;5.执行命令命令操作主键;

具体步骤如下:

1.首先,在命令行中启动postgresql服务;

net start postgresql

2.postgresql服务启动后,在命令行中登录到postgresql数据库;

psql -h -U

3.登录到postgresql数据库后,在postgresql选择一个数据库并使用;

c text

4.进入到数据库后,在数据库中新建一个数据表;

create table text;

5.最后,数据表创建好后,在数据表中执行以下命令即可对主键进行操作;

1)添加主键

#在text表中添加一个sid主键

alter table text add primary key(sid);

2)删除主键

#在text表中删除sid主键

alter table text drop CONSTRAINT sid;

3)更改主键

#将text表中的sid主键修改为ord_loc

alter table text set distributed by(sid,ord_loc);

4)新增主键

#在text表中为sid新建一个item主键

alter table text add CONSTRAINT sid primary key(item);


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:怎么在postgresql中对主键进行操作 pgsql设置主键
文章链接:http://www.7966.org/post/11381.html
转载请注明出处

喜欢 (0)