![]() |
|
Welcome to the Computer Webmaster Gaming Console Graphics Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
| |||||||
| Database Database problems or need to ask a question? maybe something to do with sql injections or a database software question. Database topics cover MySQL, PostgreSQL, Oracle, SQL Server or anything else related to databases. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 | ||
| I'm new to databases, so if my question doesn't make any sense, don't hold it against me. I have three tables--one stores user information (username, password, email, etc), another stores a list of songs--this table uses a 2-column primary key. One of the primary key columns is of DATETIME type and the other is a SMALLINT AUTO_INCREMENT type. My third table stores information about each listen--by that I mean a new record is made everytime a user listens to a song, and in that record, is the user and the song, so naturally there would only be two columns in this table, namely User (corresponding to only those users in the user table) and Song (corresponding to the primary key columns in the songs table). My question is this. How can I link the two columns in my "listens" table to the primary keys of the other two table, so that when and if a user should be deleted from teh "user" table, all listens by that user in the "listens" table would get deleted; also if any song should get deleted from the "songs" table, all listens of that song by any user, would get deleted from the "listens" table? BTW, I'm using mysql 5 on godaddy web hosting. Did this make sense? I'm not sure if I need a foreign key or what, and if so, how do I set that up? Help would be greatly appreciated--thanks. | |||
|
| Advertisements |
| | #2 | ||
| On Jun 17, 6:22 pm, TheKeith <ksd...@gmail.com> wrote: > I'm new to databases, so if my question doesn't make any sense, don't > hold it against me. I have three tables--one stores user information > (username, password, email, etc), another stores a list of songs--this > table uses a 2-column primary key. One of the primary key columns is > of DATETIME type and the other is a SMALLINT AUTO_INCREMENT type. My > third table stores information about each listen--by that I mean a new > record is made everytime a user listens to a song, and in that record, > is the user and the song, so naturally there would only be two columns > in this table, namely User (corresponding to only those users in the > user table) and Song (corresponding to the primary key columns in the > songs table). > > My question is this. How can I link the two columns in my "listens" > table to the primary keys of the other two table, so that when and if > a user should be deleted from teh "user" table, all listens by that > user in the "listens" table would get deleted; also if any song should > get deleted from the "songs" table, all listens of that song by any > user, would get deleted from the "listens" table? > > BTW, I'm using mysql 5 on godaddy web hosting. > > Did this make sense? I'm not sure if I need a foreign key or what, and > if so, how do I set that up? Help would be greatly appreciated--thanks. Have a read through this: http://dev.mysql.com/doc/refman/5.0/...nstraints.html | |||
|
| | #3 | ||
| > Have a read through this: > > http://dev.mysql.com/doc/refman/5.0/...ey-constraints... Hey thanks! So I've followed all the instructions, but for some reason I'm getting a: ERROR 1005 (HY000): Can't create table './keithsdb/ kmfnlistens.frm' (errno: 150) when creating the referencing table, with this syntax: create table kmfnListens (listener varchar(20) not null, kmfnSongID bigint not null auto_increment, index (kmfnSongID), foreign key (kmfnSongID) references kmfnSongs(songID) on delete cascade on update cascade) engine=innodb; I tried creating the table without the foreign key clause, and it works. But I can't get the foreign key to work. After creating the table without it, I issued a: alter table kmfnListens foreign key kmfnSongID references kmfnSongs(songID) on delete cascade on update cascade; but got an error 1064 syntax error--what am I doing wrong? The referenced table.column is kmfnSongs.songID and that column is its primary key, so I'm stumped! Help! thanks. | |||
|
| | #4 | ||
| On 18 Jun, 15:50, TheKeith <ksd...@gmail.com> wrote: > > Have a read through this: > > >http://dev.mysql.com/doc/refman/5.0/...ey-constraints... > > Hey thanks! So I've followed all the instructions, but for some reason > I'm getting a: > > ERROR 1005 (HY000): Can't create table './keithsdb/ > kmfnlistens.frm' (errno: 150) > > when creating the referencing table, with this syntax: > > create table kmfnListens (listener varchar(20) not null, kmfnSongID > bigint not null auto_increment, index (kmfnSongID), foreign key > (kmfnSongID) references kmfnSongs(songID) on delete cascade on update > cascade) engine=innodb; > > I tried creating the table without the foreign key clause, and it > works. But I can't get the foreign key to work. After creating the > table without it, I issued a: > > alter table kmfnListens foreign key kmfnSongID references > kmfnSongs(songID) on delete cascade on update cascade; > > but got an error 1064 syntax error--what am I doing wrong? The > referenced table.column is kmfnSongs.songID and that column is its > primary key, so I'm stumped! Help! thanks. According to your first post: "One of the primary key columns is of DATETIME type and the other is a SMALLINT AUTO_INCREMENT type" But in the above you have "kmfnSongID bigint not null auto_increment". The joining fields must be identical. | |||
|
| | #5 | ||
| On Jun 18, 11:23 am, Captain Paralytic <paul_laut...@yahoo.com> wrote: > On 18 Jun, 15:50, TheKeith <ksd...@gmail.com> wrote: > > > > > > Have a read through this: > > > >http://dev.mysql.com/doc/refman/5.0/...ey-constraints... > > > Hey thanks! So I've followed all the instructions, but for some reason > > I'm getting a: > > > ERROR 1005 (HY000): Can't create table './keithsdb/ > > kmfnlistens.frm' (errno: 150) > > > when creating the referencing table, with this syntax: > > > create table kmfnListens (listener varchar(20) not null, kmfnSongID > > bigint not null auto_increment, index (kmfnSongID), foreign key > > (kmfnSongID) references kmfnSongs(songID) on delete cascade on update > > cascade) engine=innodb; > > > I tried creating the table without the foreign key clause, and it > > works. But I can't get the foreign key to work. After creating the > > table without it, I issued a: > > > alter table kmfnListens foreign key kmfnSongID references > > kmfnSongs(songID) on delete cascade on update cascade; > > > but got an error 1064 syntax error--what am I doing wrong? The > > referenced table.column is kmfnSongs.songID and that column is its > > primary key, so I'm stumped! Help! thanks. > > According to your first post: > "One of the primary key columns is of DATETIME type and the other is a > SMALLINT AUTO_INCREMENT type" > But in the above you have "kmfnSongID bigint not null auto_increment". > > The joining fields must be identical. Ah yeah, I neglected to mention that I changed teh structure of the referenced tables so that each one only has one primary key column-- because I wasn't able to convert that table to innoDB as it was with the two-column primary key, one of which was auto-increment. | |||
|
| | #6 | ||
| On Jun 18, 12:12 pm, TheKeith <ksd...@gmail.com> wrote: > On Jun 18, 11:23 am, Captain Paralytic <paul_laut...@yahoo.com> wrote: > > > > > On 18 Jun, 15:50, TheKeith <ksd...@gmail.com> wrote: > > > > > Have a read through this: > > > > >http://dev.mysql.com/doc/refman/5.0/...ey-constraints... > > > > Hey thanks! So I've followed all the instructions, but for some reason > > > I'm getting a: > > > > ERROR 1005 (HY000): Can't create table './keithsdb/ > > > kmfnlistens.frm' (errno: 150) > > > > when creating the referencing table, with this syntax: > > > > create table kmfnListens (listener varchar(20) not null, kmfnSongID > > > bigint not null auto_increment, index (kmfnSongID), foreign key > > > (kmfnSongID) references kmfnSongs(songID) on delete cascade on update > > > cascade) engine=innodb; > > > > I tried creating the table without the foreign key clause, and it > > > works. But I can't get the foreign key to work. After creating the > > > table without it, I issued a: > > > > alter table kmfnListens foreign key kmfnSongID references > > > kmfnSongs(songID) on delete cascade on update cascade; > > > > but got an error 1064 syntax error--what am I doing wrong? The > > > referenced table.column is kmfnSongs.songID and that column is its > > > primary key, so I'm stumped! Help! thanks. > > > According to your first post: > > "One of the primary key columns is of DATETIME type and the other is a > > SMALLINT AUTO_INCREMENT type" > > But in the above you have "kmfnSongID bigint not null auto_increment". > > > The joining fields must be identical. > > Ah yeah, I neglected to mention that I changed teh structure of the > referenced tables so that each one only has one primary key column-- > because I wasn't able to convert that table to innoDB as it was with > the two-column primary key, one of which was auto-increment. AHH! -- I got it working finally. I'm not sure what I did right this time though. | |||
|
| | #7 | ||
| == Quote from TheKeith (ksdump@gmail.com)'s article > On Jun 18, 12:12 pm, TheKeith <ksd...@gmail.com> wrote: > > On Jun 18, 11:23 am, Captain Paralytic <paul_laut...@yahoo.com> wrote: > > > > > > > > > On 18 Jun, 15:50, TheKeith <ksd...@gmail.com> wrote: > > > > > > > Have a read through this: > > > > > > >http://dev.mysql.com/doc/refman/5.0/...ey-constraints... > > > > > > Hey thanks! So I've followed all the instructions, but for some reason > > > > I'm getting a: > > > > > > ERROR 1005 (HY000): Can't create table './keithsdb/ > > > > kmfnlistens.frm' (errno: 150) > > > > > > when creating the referencing table, with this syntax: > > > > > > create table kmfnListens (listener varchar(20) not null, kmfnSongID > > > > bigint not null auto_increment, index (kmfnSongID), foreign key > > > > (kmfnSongID) references kmfnSongs(songID) on delete cascade on update > > > > cascade) engine=innodb; > > > > > > I tried creating the table without the foreign key clause, and it > > > > works. But I can't get the foreign key to work. After creating the > > > > table without it, I issued a: > > > > > > alter table kmfnListens foreign key kmfnSongID references > > > > kmfnSongs(songID) on delete cascade on update cascade; > > > > > > but got an error 1064 syntax error--what am I doing wrong? The > > > > referenced table.column is kmfnSongs.songID and that column is its > > > > primary key, so I'm stumped! Help! thanks. > > > > > According to your first post: > > > "One of the primary key columns is of DATETIME type and the other is a > > > SMALLINT AUTO_INCREMENT type" > > > But in the above you have "kmfnSongID bigint not null auto_increment". > > > > > The joining fields must be identical. > > > > Ah yeah, I neglected to mention that I changed teh structure of the > > referenced tables so that each one only has one primary key column-- > > because I wasn't able to convert that table to innoDB as it was with > > the two-column primary key, one of which was auto-increment. > AHH! -- I got it working finally. I'm not sure what I did right this > time though. from the error code you gave, it appears that the key constraint (foreign key) was incorrectly formed just like captain p mentioned if they are not of the same kind, it won't work. -- POST BY: lark with PHP News Reader | |||
|
| Featured Websites | ||||
|
![]() |
| Tags: columns, keys, link, newbie, other, primary, question1, tables |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| n00b DB design question: Gigantic tables | Kevin McCarthy | Database | 8 | 07-01-2007 11:01 PM |
| Autoincremented id with two primary keys | Alex | Database | 2 | 07-01-2007 7:35 PM |
| Newbie - FM Modulator / Broadcaster to link MP3 player toexisting car radio | Mark Faithfull | Car audio | 0 | 06-17-2007 3:13 PM |
| docs about access tables, operation tables, volume tables | BradPitt | Database | 0 | 05-31-2007 8:42 PM |
| Keys into keys in template flexy | Jandro brozaman | Pear | 1 | 05-20-2007 6:34 PM |
| Featured Websites | ||||
|