美文网首页
2018-05-22 postgre-CRUD

2018-05-22 postgre-CRUD

作者: lucasdada | 来源:发表于2018-05-22 10:39 被阅读0次

    参考:
    PostgreSQL 9.3.1 中文手册

    查询:

    select a,b,c from table_name where a=1
    

    统计特定字段的总行数

    select count(spec),spec from table_name where spec='dida' group by spec;
    

    示例结果:

    +-------+------------------+
    | count | spec|
    +-------+------------------+
    | 8 | dida |
    +-------+------------------+
    1 row in set

    相关文章

      网友评论

          本文标题:2018-05-22 postgre-CRUD

          本文链接:https://www.haomeiwen.com/subject/oqhhjftx.html