<?php$username=$_GET['uid']; //获取一个值作为查询条件$result=$db->query("select * from trip where author='".$username."'");$num_cats=$result->num_rows; //是否有返回行i ...
分类:
数据库 时间:
2016-07-05 12:18:39
阅读次数:
174
select table_name from user_tables where NUM_ROWS=0 Select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 alter tab ...
分类:
其他好文 时间:
2016-05-22 00:32:30
阅读次数:
137
mysql_affected_rows -- 取得前一次 MySQL 操作所影响的记录行数mysql_num_rows -- 函数返回结果集中行的数目。config.php 1 $conn=mysql_connect('localhost','root','');//连接数据库 mysql_sele...
分类:
数据库 时间:
2016-01-09 13:45:13
阅读次数:
175
1.根据下拉框的值异步查询信息HTML代码如下:query("Select * From link Order By id Desc");?>请选择网站:网站信息...10-6.phpquery($sql);if($result->num_rows>0){ while($row=$result...
分类:
Web程序 时间:
2016-01-09 12:30:13
阅读次数:
253
query($sql); $rows=$result->num_rows; $cols=$result->field_count; echo "表中{$rows}行,{$cols}列"; //记录信息 /* $result->fetch_row() ----...
分类:
数据库 时间:
2015-12-04 16:26:08
阅读次数:
236
//1.计算总记录数 $sql_0 = "select * from t_user"; $result_0 = mysql_query($sql_0); $count = mysql_num_rows($result...
分类:
数据库 时间:
2015-09-17 23:09:52
阅读次数:
231
mysql_affected_rows() 函数返回前一次 MySQL 操作所影响的记录行数。mysql_num_rows() 返回结果集中行的数目。此命令仅对 SELECT 语句有效。要取得被 INSERT,UPDATE 或者 DELETE 查询所影响到的行的数目,用 mysql_affected...
分类:
数据库 时间:
2015-09-09 19:04:34
阅读次数:
240
1、查询当前用户的空表; select count(*) from user_tables where NUM_ROWS=0; 2、生成执行语句 Select ‘alter table ‘||table_name||‘ allocate extent;‘ from user_tables where num_rows=0 3、执行第2步中生成...
分类:
数据库 时间:
2015-08-30 16:03:41
阅读次数:
210
在php脚本中执行select查询命令,也是调用mysql_query()函数,但是和执行DML不同的是,执行SELECT 命令后,mysql_query()函数的返回值是一个资源的引用指针(结果集),需要通过相应函数进行处理。mysql_num_rows($result) 从结果集中获取数据记录....
分类:
Web程序 时间:
2015-08-25 13:40:39
阅读次数:
203