select count(*) from table1
这样的语句,必须要按照标准的query方法来获取记录集,然后再获取行,再获取列,是不是?
在asp.net中是直接有个函数可以获取查询语句产生记录集的第一行第一列数据的。
谢谢
4 个解决方案
#1
PDO有专门的方法,自己查查手册
貌似是findColunm()。。。。。还是fetchColumn()。。。
貌似是findColunm()。。。。。还是fetchColumn()。。。
#2
pdo 中的 fetchColumn
mysql_ 系列函数好像要多写几步
mysql_ 系列函数好像要多写几步
#3
也可以用mysql_num_rows() 函数,不过
select count(*) from table1
要改为
select * from table1
select count(*) from table1
要改为
select * from table1
#4
感谢楼上几位
#1
PDO有专门的方法,自己查查手册
貌似是findColunm()。。。。。还是fetchColumn()。。。
貌似是findColunm()。。。。。还是fetchColumn()。。。
#2
pdo 中的 fetchColumn
mysql_ 系列函数好像要多写几步
mysql_ 系列函数好像要多写几步
#3
也可以用mysql_num_rows() 函数,不过
select count(*) from table1
要改为
select * from table1
select count(*) from table1
要改为
select * from table1
#4
感谢楼上几位