CMD中SQL的命令

Windows下CMD中的命令:
1.登录:psql -h localhost -p 5432 -U postgres; 【U一定要大写】
2.退出登录:\q
3.查看数据库:\l
4.查看系统用户信息:\du
5.查看版本信息:select version();
6.创建用户:create user 用户名 with password ‘密码’;
7.删除用户:drop user 用户名;
8.创建数据库:create database 数据库名;
9.删除数据库:drop database 数据库名;
10.创建表:create table test();
11.查看所有存在表:\d
12.查看表结构:\d test
13.删除表:drop table test;
14.插入记录:insert into test(id,name) values(1,‘姓名’);【一定要是单引号】
insert into test values(2,‘姓名’);
insert into test(id,name) values(3,‘姓名’),(4,‘姓名’);【插入两行】
15.查询记录:select * from 表名;
16.更新记录:update test set name=‘用户名’ where id=1;
17.删除记录:delete from test where id=4;
18.切换数据库\c
19.重命名一个表:alter table 旧表名 rename to 新表名;
20.修改密码:\password postgres
21.备份数据库:在cmd中输入:pg_dump -h localhost -p 5432 -U postgres >d:\test.bak 可以将用户postgres中所有的表数据备份

你可能感兴趣的:(CMD中SQL的命令)