作业帮 > 综合 > 作业

PowerBuilder中count(*)是什么意思

来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/12 17:09:20
PowerBuilder中count(*)是什么意思
PowerBuilder中count(*)是什么意思
统计某数据表在某条件下的记录数.
select Count(*) Into :li_Count from table1
表示要获得table1表中总记录数,并将该记录数赋值给变量li_Count
select Count(*) Into :li_Count From table where col01='AAA';
表示要获得table1表中所有col01字段等于'AAA'的记录数,并将该记录数赋值给变量li_Count