Database ID auto Increment
I'm building a CMS Admin Panel to show Data. I'm considering the ID column.
Which one is more compatible for user?
The Pretty Auto Increment
Neat Number but hardly refer the ID for searching
# name data
1 Billy Test
2 Jason Test
3 Sarah Test
4 Andre Test
OR
The Database Auto Increment
Messy Number, but easily can refer the ID for searching
# name data
11 Billy Test
15 Jason Test
19 Sarah Test
24 Andre Test
Usually Developer will show the ID cols as pretty auto increment or database's not so neat auto increment?
Or having other win win situation method?