MySQL Database Design - Put these fields in Users table or create new table?

Yes, put them in your users table. Columns are cheap (if they are often null or small), particularly as your users table is guaranteed to be very small (You cannot possibly have a large number of users).

You want a bit type for any boolean field. You can also use bool or boolean, but those are aliases for tinyint(1), as is bit. Don't use enum, as it inserts an empty string when an invalid entry is input, rather than throw an exception.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions