摘要:
1.postgresql postgres-# ; ERROR: could not open extension control file "/usr/pgsql-10/share/extension/postgis_topology.control": No such file or direc 阅读全文
摘要:
1. 在容器里查看 / $ ip link show eth0 531: eth0@if532: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP link/ether 02:42:ac:12:00:06 阅读全文
摘要:
1. 创建用户和授权 CREATE USER chentest WITH PASSWORD ' 123456' VALID UNTIL '2020-04-28'; ALTER USER chenrenxun CONNECTION LIMIT 20 login; GRANT CONNECT ON DA 阅读全文
摘要:
1. 完全备份 创建用于备份恢复的用户 pxb 并赋予权限 mysql> create user pxb@'localhost' identified by '123456'; mysql> grant reload,process,lock tables,replication client on 阅读全文
摘要:
1. 利用max(case when then) 聚合函数,max,取最大值 (case when course = '语文' then score else 0 end) 判断 as 语文 别名作为列名 2.max(when course='语文' then score else 0 end) m 阅读全文