ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
Pgsql导入导出 - 链接 ``` psql -U userName dbName -h host -p port ``` - 导入 ``` psql -U postgres -W -h 127.0.0.1 -p 5432 -d pre_cartoon_us -f /home/ubuntu/cartoon/back.sql ``` - 删库 ``` dropdb -h 127.0.0.1 -p 5432 -U postgres -W pre\_cartoon\_us ``` - 创建 ``` createdb -h 127.0.0.1 -p 5432 -U postgres -W pre_cartoon_us ```