Hello Everyone,
I posted this accidentally in the "MySQL" forum before I saw this one, so sorry about that.
I am working on a web application that has users log in to their account and create 'events'.
There is a single table for all users, with a primary key of their email address.
I can see 2 ways for each user to be able to create accounts:
1. I could create another table with all posts and an auto_increment key. Then, I could create a relational table that has email address and the key from the events table.
2. I could create a different table for each user that contains all of their events.
Which way is more practical/faster? I'm brand new to this stuff. Thanks everyone!
-Greelmo