I have a database table for user profiles. It's comprised of a primary key, user id, full name, email, location, and about me.
I'm having difficulty determining the correct options for this type of database table.
Storage Engine:
Collation:
auto_increment:
row_format:
Currently I'm using InnoDB to allow foreign keys and that's the only option I'm certain about.
CREATE TABLEdocumentation? It contains descriptions of all of those options and should give you an idea of what you should do with each of them. – Charles Jul 11 '11 at 18:00