*/
太感谢chengsiping朋友了,我不了解MYSQL变量,从来没用过。
你的语句我使用很好用。我把
set @chengji=0;
set @mingci=1;
set @shunxu=0;
update t1,
(select xingming,chengji,
@shunxu:=@shunxu+1,
if(chengji=@chengji,@mingci,@mingci:=@shunxu) as mingci,
@chengji:=chengji
from t1 order by chengji desc) as t2
set t1.mingci=t2.mingci
WHERE t1.xingming=t2.xingming and t1.chengji=t2.chengji;
放到PHPMYADMIN的SQL里运行,完全达到了效果。
我想请问您,我的PHP文件里如何写这几句语句,是这样吗?
$query="set @chengji=0";
$result=mysql_query($query,$link);
$query="set @mingci=1";
$result=mysql_query($query,$link);
$query="set @shunxu=0";
$result=mysql_query($query,$link);
$query="update t1,
(select xingming,chengji,
@shunxu:=@shunxu+1,
if(chengji=@chengji,@mingci,@mingci:=@shunxu) as mingci,
@chengji:=chengji
from t1 order by chengji desc) as t2
set t1.mingci=t2.mingci
WHERE t1.xingming=t2.xingming and t1.chengji=t2.chengji";
$result=mysql_query($query,$link);
我虽然是个菜鸟,但是我很喜欢学,请您别笑话我。