postgresql连接命令、导入数据、改动表字段

  • 设置表的字段默认值
alter table table_name alter COLUMN column_name set DEFAULT  default_value(eg: current_timestamp)
  • 连接命令:
psql -U dbuser -d exampledb -h 127.0.0.1 -p 5432

导数据:

  • psql -U usr -h host -d db -p 5432 -f sql_file
  • 用来将file内的表导入库中,(会默认创建同名table)
    原文作者:洛克黄瓜
    原文地址: https://www.jianshu.com/p/15dc78ff778e
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞