hostmask()
是一个用于计算提供的 IP 地址网络的主机掩码的系统函数。
hostmask()
在 PostgreSQL 7.4 中添加。
示例
hostmask()
的用法示例
postgres=# SELECT hostmask('192.168.1.2/32'); hostmask ---------- 0.0.0.0 (1 row) postgres=# SELECT hostmask('192.168.1.2/31'); hostmask ---------- 0.0.0.1 (1 row) postgres=# SELECT hostmask('192.168.1.2/16'); hostmask ------------- 0.0.255.255 (1 row)
参考文献
- PostgreSQL 文档: IP 地址函数