I have a MySQL table with 3 fields: Location Variable Value I frequently use the following query: SELECT *
If I had a site where a user can flag another user post and it cannot be undone or changed, do I need to have a primary key? All my selects would be on the post_id and with a where clause to see if th
Say, there is a Page that has many blocks associated with it. And each block needs custom rendering, saving and data.
I am writing a data warehouse, using MySQL as the back-end. I need to partition a table based on two integer IDs and a name string. I have read (parts of) the mySQL documentation regarding partitionin
Apologies for the less than ideal title; had a hard time coming up with something. Three entities: Products, Clients and Client_Product_Authorization.
I\'ve shown up at a new job and discovered database which is in dire need of some help.There are many many things wrong with it, including
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
My Schema looks like this: CREATE TABLE items ( id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, name TEXT NOT NULL,
I have four tables: users: id, thread_id threads: id, language_id posts: id, user_id, language_id languages: id
If it matters as of now I\'m using MySQL/MyISAM but I\'m open to using PostgreSQL. I\'m also open to using memcached.