Forum: MySQL Mar 31st, 2009 |
| Replies: 4 Views: 428 I gave you the basics. Good luck. |
Forum: MySQL Mar 31st, 2009 |
| Replies: 4 Views: 325 Does Table1 (email, pass, gender, dob) have a foreign key constraint on CompanyTable? If so, let the database handle the foreign key validation and have the web application check for errors.
... |
Forum: MySQL Mar 30th, 2009 |
| Replies: 4 Views: 428 SELECT h.name
FROM Human h, Attribute a, Human_Attribute ha
WHERE h.human_id = ha.human_id and a.attribute_id = ha.attribute_id and a.attribute_id in (list) |
Forum: MySQL Aug 3rd, 2007 |
| Replies: 6 Views: 5,226 Glad to hear.
Good luck with your project. |
Forum: MySQL Jul 27th, 2007 |
| Replies: 6 Views: 5,226 Why is it not ip_from and ip_to = ?
I have not dealt with using a composite primary key and then adding in >= or <=. I have always set them equal.
While it may not be the use scenerio you are... |
Forum: MySQL May 17th, 2007 |
| Replies: 24 Views: 92,513 Sadly, no. You cannot link Inno and MyISAM and maintain foreign key constraints. I found this one out the hard way as well and is causing me a slight headache.
I did convert the MyISAM to InnoDB... |
Forum: MySQL May 6th, 2007 |
| Replies: 24 Views: 92,513 What caused the force?
From what I have been able to gather over the last few days, InnoDB is more robust, yet more resource intensive.
This link is a bit dated, but shows what each [MYSQL... |