1.列名含有大写问题
①比如:列名为customerCode
②sql语句:SELECT * FROM table_name WHERE “customerCode”=’FreshFreshSHOP’;
③备注:列名加双引号可以区分大小写,不加默认小写;值只能用单引号
2.外网连接postgresql
①执行命令:cd /etc/postgresql/10/main(由于版本不同,自己进入etc后一级一级进入)
②修改postgresql.conf:命令(sudo vim postgresql.conf)
③修改pg_hba.conf:命令(sudo vim pg_hba.conf)
④重启postgresql:sudo service postgresql restart
⑤继续执行命令:su postgres ,输入密码后执行:psql,然后执行:alter role postgres with password ‘1234’
⑥外网连接: