标签: php html psql
我有一张桌子(员工),我想在我的php网站上显示女性配额。
我的psql查询:select cast(count(case when sex='female' then 1 end)as float) / cast(count(e_id)as float) as womens_quota from employee;
select cast(count(case when sex='female' then 1 end)as float) / cast(count(e_id)as float) as womens_quota from employee;
我只想以最基本的方式在php中显示结果。但是我不知道如何将查询链接到php文件。
有什么建议吗?