如果是取數(shù)據(jù)用sql你就order by *** limit 1不就取最大了。
創(chuàng)新互聯(lián)公司專(zhuān)注于企業(yè)網(wǎng)絡(luò)營(yíng)銷(xiāo)推廣、網(wǎng)站重做改版、寧德網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、HTML5建站、商城開(kāi)發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為寧德等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。
還有一些框架自帶的例如getone() 就可以只寫(xiě)order by *** 不用寫(xiě)limit就可以獲得最大。
?php
//連接數(shù)據(jù)庫(kù)
$myconn=mysql_connect("localhost","root","");
mysql_select_db("nowamagic",$myconn);
$strSql="
select article_ID
from article
where article_ID=(select max(article_ID)
from article)
";
$strSql2="
select article_ID
from article
where article_ID=(select min(article_ID)
from article)
";
$result=mysql_query($strSql,$myconn) or die(mysql_error());
$result2=mysql_query($strSql2,$myconn) or die(mysql_error());
$row_max=mysql_fetch_array($result);
$row_min=mysql_fetch_array($result2);
// 輸出ID最大值
//echo $row_max["article_ID"];
//echo "
";
// 輸出ID最小值
//echo $row_min["article_ID"];
$article_count = $row_max["article_ID"] - $row_min["article_ID"];
?
thinkPHP 查詢數(shù)據(jù)庫(kù)中id最大的一條數(shù)據(jù)操作如下:
先給數(shù)據(jù)庫(kù)中的這個(gè)字段(sort)分組 再降序排列, 取第1條。
通過(guò)步驟1 獲取了 sort值為最大的數(shù)據(jù), 然后在 通過(guò) where sort ='步驟1取的值'。
查詢最大ID,select max(id) from table。
查詢最大ID的記錄 select * from table where id = (select max(id) from table)
或者select * from table t where ?not exists (select 1 from table t1 where t1.id t.id)
說(shuō)實(shí)話,不明白你要干啥。
$green
=
"SELECT
*
FROM
".
GREEN
.
"
";
if($green-fields['c']=='aa')
{$c=10;}
elseif($green-fields['c']=='bb')
{$c=20;}
elseif($green-fields['c']=='cc')
{$c=30;}
elseif($green-fields['c']=='dd')
{$d=40;}
elseif($green-fields['a']=='111'
and
$green-fields['b']=='1'){$c_max=30;}
這樣子?
統(tǒng)計(jì)查詢
在應(yīng)用中我們經(jīng)常會(huì)用到一些統(tǒng)計(jì)數(shù)據(jù),例如當(dāng)前所有(或者滿足某些條件)的用戶數(shù)、所有用戶的最大積分、用戶的平均成績(jī)等等,ThinkPHP為這些統(tǒng)計(jì)操作提供了一系列的內(nèi)置方法,包括:
方法????????????說(shuō)明
Count ? ?
統(tǒng)計(jì)數(shù)量,參數(shù)是要統(tǒng)計(jì)的字段名(可選) ?
Max ? ?
獲取最大值,參數(shù)是要統(tǒng)計(jì)的字段名(必須) ?
Min ? ?
獲取最小值,參數(shù)是要統(tǒng)計(jì)的字段名(必須) ?
Avg ? ?
獲取平均值,參數(shù)是要統(tǒng)計(jì)的字段名(必須) ?
Sum ? ?
獲取總分,參數(shù)是要統(tǒng)計(jì)的字段名(必須) ?
用法示例:
獲取用戶的最大積分:
$maxScore?=?$User-max('score');
select case
when a.maxnum 另一個(gè)值 then a.maxnum+1
when a.maxnum 另一個(gè)值 then 另一個(gè)值
end
from ( select max(字段) as maxnum from table) a
只能在php中查出來(lái)
分享文章:php如何取數(shù)據(jù)表最大值 php輸出數(shù)組的最大值和最小值
網(wǎng)頁(yè)路徑:http://muchs.cn/article20/docsgco.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供移動(dòng)網(wǎng)站建設(shè)、營(yíng)銷(xiāo)型網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、外貿(mào)建站、網(wǎng)站導(dǎo)航、軟件開(kāi)發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)