I am aware that MySQL and PostgreSQL[1] do not have that concept, so I am interested in finding out of there is an open-source SQL database that does have the concept.
[1] It was later pointed out that PostgreSQL does have the rowid pseudo-column.
feedback
|
|
See here for a brief list of pseudocolumns in
That is direct analog of As for In In This is also true for If you select a Note that if you have not defined any column as a That's why you should always create some kind of a | |||||||
feedback
|
|
SQLite has an auto incremented "ROWID" column which you can access using ROWID, _ROWID, or OID. If you define an integer primary key than they will be aliased. | |||||||||||
feedback
|