What is the Oracle rowid counterpart in MySQL?

Questions by anil.ajax

Showing Answers 1 - 10 of 10 Answers

Here is the MySQL row id

Create table log_bookid (logbookID int IDENTITY (1,1),fdate datetime, actype varchar(16), acid varchar(16), nlandings int, nhours float);

I am trying to go backwards i.e. find the Oracle version

  Was this answer useful?  Yes

Hi,


There is no rowid counterpart in MySQL. But if you want same feature in MySQL then you need to add following column in each table you need rowid.

id bigint unsigned not null autoincrement

If you need any further assistance or discussion please mail me at altafhsayyed@yahoo.com

Thanks and regards

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions