怎么获取数据库表中数据的个数?

怎么获取数据库表中数据的个数?,第1张

利用SQL语句可以取得数据库表中数据的个数

select count(*) from 表名

rs=stmt.executeQuery("SELECT count(1) FROM biao")

rs.next()

int a = rs.getInt(1)

select count(b.name) as mary出现的次数

from

(

    select a.name    

    from

    (

        select 姓名1 as name from 表    

        union all

        select 姓名2 from 表

        union all 

        select 姓名3 from 表

        union all 

        select 姓名4 from 表

        union all 

        select 姓名5 from 表

    )a

    where a.name = 'mary'

)b

如何计算数据库中数据表字段个数

select 字段, count(*)

from table

where ...

group by 字段


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6764501.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-28
下一篇 2023-03-28

发表评论

登录后才能评论

评论列表(0条)

保存