查看外部数据
[postgres@pg1 ~]$ cat b.txt
3,cc
登陆postgresql数据库
[postgres@pg1 ~]$ psql -d mydb
创建表
mydb=# create table t1 (id int4,name varchar(20));
导入数据
mydb=# copy t1 from '/home/postgres/b.txt' (delimiter ',');
查看数据
mydb=# select * from t1;
postgresql copy使用
原创whdba 博主文章分类:PostgreSQL ©著作权
文章标签 postgresql copy使用 文章分类 数据库
上一篇:CentOS8配置本地yum
-
PostgreSQL教程
PostgreSQL教程
PostgreSQL 数据库 运算符 -
PostgreSQL全面剖析
PostgreSQL全面剖析
PostgreSQL全面剖析 -
postgresql中COPY的用法
postgresql中COPY的用法
sql COPY postgre