https://bugs.documentfoundation.org/show_bug.cgi?id=128558
Robert Großkopf <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |NOTABUG Status|UNCONFIRMED |RESOLVED CC| |[email protected] --- Comment #15 from Robert Großkopf <[email protected]> --- (In reply to mhonline from comment #14) > Up to my believe, this need to be fixed, because FB does not have > something like "recordnumbers", meaning to honour and make use of > the order of entered data is impossible until now. This is another feature you want: Try SELECT "ID", "Name", ROW_NUMBER() OVER (ORDER BY "ID") AS "Row" FROM "Table" This will show the row number (record number). You will never get the record number by an autovalue. There could be deleted rows and the number of records will differ. Too many different behaviors in this description. If one bug still exists please write a new description. I will set this one to RESOLVED and NOTABUG -- You are receiving this mail because: You are the assignee for the bug.
