0

I have a table with 5 columns one of them is a uuid generate by an application. In the table the uuid colum is varchar(64) and the primary key is a int autoincremental. Is it bad idea delete the id column and use uuid like primarykey?

1 Answers1

0

Probably yes! Numerical keys takes up less memory and index works with better performance at first.

I found a similar discution here

Andre Carneiro
  • 708
  • 1
  • 5
  • 27