Here's three best practices I try to follow when naming tables:
- Never name a table with plural (such as "users")
- Never name a table using a reserved keyword (such as "user")
- Never prefix your table name with "tbl" or some other object type prefix
Keeping all this in mind, how do you recommend naming the table that will hold user identities?