dounong5373 2012-04-25 15:39
浏览 24

too long

How can i refer to a specific row in a table without using column or primary key? I simply want to update lets say a 3rd row in a table but I dont want to use a column with a index on that column.

  • 写回答

1条回答 默认 最新

  • duandun2136 2012-04-25 15:42
    关注

    Add LIMIT 2,1 to limit row number 3. Change the 2 to affect whatever row you want, but it's probably better to also add ORDER BY on a key.

    评论

报告相同问题?