我需要按行数更新行(不是 AI ID,因为某些行可能会被删除)。我怎样才能做到这一点?我的意思是这样的:
UPDATE cars SET idx = value WHERE row_number = i
我会在“for”语句中执行此操作,并且 i 是我的语句的整数。所以我会更新语句中的每一行。
对不起我的英语不好,谢谢!
我需要按行数更新行(不是 AI ID,因为某些行可能会被删除)。我怎样才能做到这一点?我的意思是这样的:
UPDATE cars SET idx = value WHERE row_number = i
我会在“for”语句中执行此操作,并且 i 是我的语句的整数。所以我会更新语句中的每一行。
对不起我的英语不好,谢谢!
这是一个纯 MySQL 解决方案:
/*test data*/
create table foo (id int auto_increment primary key, a int);
insert into foo (a) values (10), (11), (12);
/*update statement*/
update foo
set a = 5
where id = (
select id from (
select id, @rownum:=@rownum + 1 as rownumber
from foo, (select @rownum:=0) vars order by id
) sq where rownumber = 2
);
结果是:
| ID | A |
-----|----|--
| 1 | 10 |
| 2 | 5 |
| 3 | 12 |
如果您对此有任何疑问,请随时询问。
另外,请注意order by id
那里。这很重要,因为在数据库中没有第一行或最后一行。如果没有 order by 子句,理论上每次都会有不同的结果。
我不知道这个关于 mysql 但你可以在 php 中做到这一点
$row_number=? ;//the row no of mysql you want to change the id
$id=? ;//the new id
mysql_connect //do it yourself
$query="select 8 from tablename"; //the query
$result=mysql_query($qyery,$conn);
$count=0;
while($row=mysql_fetch_array($result)) // fetch each row one by one an put data in array $row
{
$count++; //increment count means the no of rows are incermented
if($count==$rownumber) //the row where you want to edit the id
{
$query1="update tablename set id='".$id."' where id=".$row["id"]; //new query on that particular row
$result1=mysql_query($query1,$conn);
}
}
这将起作用,只需根据您的使用修改此代码