?php??
成都創(chuàng)新互聯(lián)公司10多年成都企業(yè)網(wǎng)站定制服務(wù);為您提供網(wǎng)站建設(shè),網(wǎng)站制作,網(wǎng)頁設(shè)計及高端網(wǎng)站定制服務(wù),成都企業(yè)網(wǎng)站定制及推廣,對成都服務(wù)器托管等多個行業(yè)擁有豐富的網(wǎng)站營銷經(jīng)驗的網(wǎng)站建設(shè)公司。
//連接數(shù)據(jù)庫??
$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ù)庫中id最大的一條數(shù)據(jù)操作如下:
先給數(shù)據(jù)庫中的這個字段(sort)分組 再降序排列, 取第1條。
通過步驟1 獲取了 sort值為最大的數(shù)據(jù), 然后在 通過 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)
select case
when a.maxnum 另一個值 then a.maxnum+1
when a.maxnum 另一個值 then 另一個值
end
from ( select max(字段) as maxnum from table) a
只能在php中查出來
分享文章:php數(shù)據(jù)庫最大值 php數(shù)據(jù)庫最大值是多少
網(wǎng)頁鏈接:http://vcdvsql.cn/article30/ddoghpo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)、虛擬主機、服務(wù)器托管、響應(yīng)式網(wǎng)站、網(wǎng)站策劃、品牌網(wǎng)站設(shè)計
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)