3
votes
datetime vs timestamp?
I always use DATETIME fields for anything other than row metadata (date created or modified).
As mentioned …
1
vote
How would I go about creating a new MySQL table with the results of “myisam_ftdump -c”?
Dump the results > to a file and use a LOAD DATA INFILE query to import the contents back into your new table. …
3
votes
Why CakePHP doesn’t support a foreign key with multiple columns
Only the CakePHP team would know for sure. One of the team, Nate Abdele, said this about multi-column prim …
1
vote
What’s wrong with my MySQL query?
Add a multi-column index to table4 based on the content_type, value_type and function columns.
Your query isn't selecting all the columns …
