Tagged Questions
7
votes
10answers
325 views
Best table design for application configuration or application option settings?
I need to store a series of configuration values in a database.
A couple ways I thought of to store them are: a table with 2 colums(name,value) and a row for each pair, or a table with a column for ...
4
votes
2answers
308 views
“Follow user” database table design
I'm trying to determine the best table design for a "follow/unfollow user" feature, similar to Twitter (edit: I'm not making a Twitter-like application.) Below is my the current table design and php ...
3
votes
6answers
146 views
Single mysql table for private messaging
I'm trying to create a single table for private messaging on a website. I created the following table which I think is efficient but I would really appreciate some feedback.
CREATE TABLE IF NOT ...
3
votes
9answers
190 views
Database design question. BIT column for deletions
Part of my table design is to include a IsDeleted BIT column that is set to 1 whenever a user deletes a record. Therefore all SELECTS are inevitable accompanied by a WHERE IsDeleted = 0 condition.
I ...
2
votes
3answers
69 views
Combine two tables or keep them separate?
Structure
TableA (each row in TableA can map to one or more row in circle)
Id
Name
TableB (each row in TableB can map to only one row in TableA)
Id
TableAId
UniqueValue
Example ...
2
votes
6answers
140 views
Database Design Question
I am designing a database for a project. I have a table that has 10 columns, most of them are used whenever the table is accessed, and I need to add 3 more columns;
View Count
Thumbs Up (count)
...
1
vote
2answers
106 views
MySQL Database Design Question, one to one,many to many, many to one, or too many?
I am in the process of setting up tables in my database for my first project. (Exciting!)
I am having a hard time deciding what types of relationships I need to set up.
I have the following basic ...
1
vote
1answer
52 views
Setting the right MYSQL table options
I have a database table for user profiles. It's comprised of a primary key, user id, full name, email, location, and about me.
I'm having difficulty determining the correct options for this type of ...
1
vote
3answers
306 views
SQL Server Performance with a large table
I'm looking for some advice for a table structure in sql.
Basically I will have a table with about 30 columns of strings, ints and decimals. A service will be writing to this table about 500 times a ...
1
vote
5answers
184 views
Help with database design
Hey im new to database design and having trouble trying to figure this one out. I have two tables Team and Fixtures. Team has rows of football teams and Fixture has 2 of those football teams in each ...
0
votes
2answers
39 views
How should I setup my table for image uploading for users?
I want to create an image upload for users to upload a profile picture and be able to resize it. However, I was wondering how should I do the database table. I think I should have a field for user id, ...
0
votes
2answers
42 views
Join query explained
I have the following join query for returning users to which a user subscribed. The users table consists of a user's data, and subscriptions table holds a user_id and and the id of the user she/he is ...
0
votes
1answer
76 views
Capture mysql database error and use it in php
I created the following table for user to user subscriptions.
CREATE TABLE IF NOT EXISTS `subscriptions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`subscribed_to` ...