Advantages of using two tables instead of a column with 2 different values
- by Dario
Hello
I'm creating a database structure. I have to store ingoing and outgoing messages and i'm wondering wich is the best way to do this.
2 separated tables or the same tables with an ENUM('in', 'out') column ?
Any suggestion ?
Thanks.