Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2783453
  • 博文数量: 423
  • 博客积分: 7770
  • 博客等级: 少将
  • 技术积分: 4766
  • 用 户 组: 普通用户
  • 注册时间: 2006-11-09 11:58
个人简介

Oracle/DB2/Postgresql/Mysql/Hadoop/Greenplum/Postgres-xl/Mongodb

文章分类

全部博文(423)

文章存档

2019年(3)

2018年(6)

2017年(27)

2016年(23)

2015年(30)

2014年(16)

2013年(31)

2012年(73)

2011年(45)

2010年(14)

2009年(30)

2008年(30)

2007年(63)

2006年(32)

分类:

2009-08-27 18:55:29

                             linux 环境 postgresql 练习
 
su - postgres ---->切换用户:
 
postgres-# create user tank with password '6220104'; ---> 创建数据库用户:
postgres=# grant all privileges on *.* to " identified by "6220104" --->授权用户

create database tank with owner=tank template=template1 encoding='UNICODE'; ---> 创建数据库.并指定监时表空间

[postgres@web ~]$ psql -h 127.0.0.1 -U tank tank; --->本地连数据库,
tank=> \l --->查看数据库名

tank=> create table employee(
employee_id int primary key,
name char(8),
sex char(2));

tank=> \dt ----->查看数据库表名:
tank=>\d  tablename  --- >查看表结构.
tank=>create index IN_employee on employee(name); ---> 创建索引:
tank=>\di --->查看索引
 

tank=> drop index IN_employee ; 删除索引
tank=> drop table name ----> drop table;
tank=>drop database name --->drop databases;
 

 
阅读(2082) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~