Tagged Questions

12
votes
4answers
12k views

MySQL Row Format: Difference between fixed and dynamic?

MySQL specifies the row format of a table as either fixed or dynamic, depending on the column data types. If a table has a variable-length column data type, such as TEXT or VARCHAR, the row format is ...
9
votes
5answers
632 views

table structure for personal messages

What is the best table structure to store dialogs between users in private messages? Each user can send personal message to many recepients. Each message has flag for sender: is message deleted or not ...
5
votes
5answers
1k views

MySQL - Best method to handle this hierarchical data?

This is a followup to: http://stackoverflow.com/questions/3073614/mysql-is-it-possible-to-get-all-sub-items-in-a-hierarchy I have an arbitrary-depth adjacency list model table (I am at the point that ...
2
votes
2answers
107 views

How to model Friendship relationships

I have been trying to figure out how to do this, and even with looking at other examples, I can't get it figured out, so maybe I can get some personalized help. I've got two tables, users_status and ...
2
votes
4answers
67 views

Is it efficient to have 90 percent of rows to have field set to NULL?

I have a table in my MySQL (InnoDB) full with user items. Basically each row has a user_id field and other item properties like color. Then there is one more field called a link which holds the id of ...
1
vote
2answers
29 views

Question regarding efficient table usage in MySQL

I want my users in my web app to be able to sign up for different "events". Each event has things describing it such as name, date of event, the description, and people describing the event. Should I ...
1
vote
1answer
177 views

MySQL - Structure for Permissions to Objects

What would be an ideal structure for users > permissions of objects. I've seen many related posts for general permissions, or what sections a user can access, which consists of a users, userGroups ...
0
votes
1answer
53 views

PHP / MySQL PM System with multiple receipients table structure?

I'm currently developing a PM system for a website, in which users must be able to send PM's to multiple receipients. Naturally, this means that if a message has been sent to user A, B and C, user C ...
0
votes
1answer
98 views

User Authentication and permissions table structure

I am creating a user authentication library (for the exercise). One of the things I am adding is is, a user can be assigned to multiple roles. Each role has set of permissions (think editUser, ...
0
votes
1answer
499 views

Storing phone numbers in a SQL database

I have a table that stores mobile numbers it stores country network the rest so an example mobile, or masked is 64 21 8229918 CC NN XXXXXXX Now, Country makes sense to be called country ...
0
votes
3answers
448 views

Table structure for menus in mySQL

I need advices for a table structure. I need to create menus dynamically. There will be more than 3 menus. Some of menus will have multi-level structures. What is the best way to strucure the menu ...