美文网首页
postgresql连接命令、导入数据、改动表字段

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

作者: 洛克黄瓜 | 来源:发表于2018-07-23 17:46 被阅读0次
    • 设置表的字段默认值
    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)

    相关文章

      网友评论

          本文标题:postgresql连接命令、导入数据、改动表字段

          本文链接:https://www.haomeiwen.com/subject/hjwjmftx.html