如何在 Oracle数据库中使用SQL语句查询一张表中总共有多少条数据然後在加一显示出来???

2025-03-24 17:00:58
推荐回答(2个)
回答1:

select count(*)+1 from tb

回答2:

select count(*) + 1 from 表名;