这个需要查询 information_schema.TABLES. 其中的 data_length 就是你要的...
创新互联公司专业为企业提供宿豫网站建设、宿豫做网站、宿豫网站设计、宿豫网站制作等企业网站建设、网页设计与制作、宿豫企业网站模板建站服务,10余年宿豫做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
给你个查询数据库大小的语句.
select concat(round(sum(DATA_LENGTH/1024/1024),2), ' M') as dbsize from information_schema.TABLES where table_schema= 'mysql';
价格 where 条件就可以指定单个表了.
select concat(round(sum(DATA_LENGTH/1024/1024),2), ' M') as dbsize from information_schema.TABLES where table_schema= 'mysql' and table_name='user';
mysql_connect("localhost","root","123456") or
die("打开数据库服务器失败!"); //连接数据库
mysql_select_db("a") or
die("打开数据库a失败!"); //打开数据库,a为数据库名
$sql = "select id from b"; //id为字段名,b为表名
$result=mysql_query($sql);
if(mysql_query($sql)) //判断$sql语句是否执行
{
$num=mysql_num_rows($result); //取得包含id字段记录的行数
echo "一共有".$num."个id"; }思想就是:根据含有ID的记录(数据库里一行内容称为一条记录)条数来确定ID的个数
先从数据库获取到相应表里的价钱字段的数据,然后遍历拿到的数据,求和
$sql = 'select price from table';
//连接数据库, 执行sql语句, return查询的结果$rs
for ($i = 0, $sum = 0; $i count($rs); $i++){
$sum += $rs[$i];
}
用sql group by 下就可以实现
select count(*) as count,FROM_UNIXTIME(addtime,'%m') from download where FROM_UNIXTIME(addtime,'%Y') = '2014' group by FROM_UNIXTIME(addtime,'%m')
//运行结果
/*
总和 月份
76 01
99 02
95 03
172 04
234 05
153 06
52 07
*/
select uid, sum(money) as money_total from cm_tables group by uid order by money_total desc;
需要准备的材料分别是:电脑、php编辑器、浏览器。
1、首先,打开php编辑器,新建php文件,例如:index.php。
2、在index.php中,输入代码:
$conn = new mysqli('10.5.15.177', 'root', '', 'test');
$sql = "select * from stu";
$r = $conn-query($sql);
print_r($r-num_rows);
3、浏览器运行index.php页面,此时打印出了stu表的记录数是5。