Search Results

4
votes

How does one create an index on the date part of DATETIME field in MySql

If I remember correctly, that will run a whole table scan because you're passing the column through a function. MySQL will obediently run the function for each and every column, bypassing the index …
1
vote

Searching for phone numbers in mysql

My solution would be something along the lines of what John Dyer said. I'd add a second column (e.g. phoneStripped) that gets stripped on insert and update. Index this column and search on it (afte …
1
vote

Monthly Birthday SQL Query.

I'd actually be tempted to add a birthmonth column, if you expect the list of customers to get very large. So far, the queries I've seen (including the example) will require a full table scan, as y …
0
votes

mySQL - One large query vs Ajax indivdual queries

I pretty much agree with what everyone else has had to say. I will add this, though. It really depends on your data and how you intend to use it and/or cache it. If the 700-1000 rows can be cached …
0
votes

Nested Set model in PHP/Javascript to work with MySQL

I know it's not the toolkit you're looking at, but Dojo has a very good and very flexible hierarchical tree component. I'm pretty sure it allows …