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