Tagged Questions

1
vote
4answers
4k views

Equivalent of Oracle’s RowID in MySQL

is there an equivalent of oracle's rowid in mysql? delete from my_table where rowid not in (select max(rowid) from my_table group by field1,field2) I want to make a mysql equivalent of this ...
1
vote
1answer
196 views

Is there any way using which I can get Last Updated row Id

Is there any way using which I can get the last row I have updated of the table. For Ex:- my table has 1000 records in it. I have updated the value of 500th record of table X. So, I want the ID 500 ...
0
votes
1answer
69 views

How do I reconcile rowID from a grid with the TRUE rowID back in the MYSQL database?

I have a the current release of JQgrid running and I have no problem searching within that grid, selecting a row, and editing it. When I pass this upstream the PHP code shows the values for POSTed ...