Tagged Questions
The table-structure tag has no wiki summary.
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
634 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
...
7
votes
5answers
10k views
How do I check if a column exists in SQL Server?
How do I check if a column exists in SQL Server 2000?
6
votes
4answers
1k views
How do I implement threaded comments?
I am developing a web application that can support threaded comments. I need the ability to rearrange the comments based on the number of votes received. (Identical to how threaded comments work in ...
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 ...
4
votes
2answers
491 views
What changes do I need for my tables to work on AppEngine's BigTable?
Let's say I have a booking database consisting of users:
user_id
fname
lname
and their tickets
ticket_id
user_id
flight_no
and associated flights
flight_no
airline
departure_time
arrival_time
...
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 ...
2
votes
6answers
1k views
How do I know if CONSTRAINT_NAME is a Primary or Foreign Key?
Using this SQL on SQL Server 2005
SELECT CONSTRAINT_NAME
FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE
WHERE TABLE_NAME = @TableName
AND COLUMN_NAME=@ColumnName
I get the Primary Keys AND the Foreign ...
2
votes
9answers
616 views
One To Many To Itself
How would one structure a table for an entity that can have a one to many relationship to itself? Specifically, I'm working on an app to track animal breeding. Each animal has an ID; it's also got a ...
2
votes
6answers
3k views
Storing SAS data (including table structure) in a single flat file
I need to convert SAS data tables into flat files (or "ASCII files" as they were called once, as opposed to binary files). And only 1 flat file for each original SAS table.
The challenging thing is ...
1
vote
1answer
41 views
What would be the best table structure?
I'm developing an app that will store MLS (Multiple Listing Service) Property Listings from several different MLS's. The majority of my customers will only use one MLS, however, some will use mutliple ...
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
3answers
372 views
how to get table structre of a database in java? [closed]
how to get table structre of a database in java?
1
vote
2answers
131 views
Single Inheritance or Polymorphic?
I'm programming a website that allows users to post classified ads with detailed fields for different types of items they are selling. However, I have a question about the best database schema.
The ...
1
vote
1answer
178 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
29 views
Database table structure Guidance
I am trying to build a web application that enables users to refer people to the site. A user can refer up to 10 people to the site and can have up to 7 generations, meaning that each person referred ...
0
votes
1answer
55 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
3answers
34 views
SQL - how to keep track of “simple relations”
I hope somebody can edit my title to better describe what I mean, because I don't know exactly what this would be called. However, consider this setup: I want to create a notification system, where a ...
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
449 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 ...
0
votes
2answers
47 views
How to make tasks double-checked (the way how to store it in the DB)?
I have a DB that stores different types of tasks and more items in different tables.
In many of these tables (that their structure is different) I need a way to do it that the item has to be ...
0
votes
3answers
107 views
“Rebuttals” and “Comments” - Two DB-Tables or One?
I'm working on a project for a friend and I've come across a difficult decision. The project consists of essays, each of which can be challenged, and also commented on. The thing is this, only one ...