Search Results

0
votes

Search for text between delimiters in MySQL

If you know the position you want to extract from as opposed to what the data itself is: $colNumber = 2; //2nd position $sql = "REPLACE(SUBSTRING(SUBSTRING_INDEX(fooField, ':', $col …
1
vote

What’s the best way to search a MySQL database with PHP?

Paul Dixon's code example gets the main idea across well for the LIKE-based approach. I'll just add this usability idea: Provide an (AND | OR) radio button set in the interface, default to …
0
votes

Should I lock an ISAM table to insert a value into a unique key field?

By the way you described the fear of encountering a DEADLOCK, the causation may not be clearly understood (unless there is more to your querying than described in the question). A good …
11
votes

When running UPDATE … datetime = NOW(); will all rows updated have the same date/time?

http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_now …
5
votes

MySQL and comments

http://dev.mysql.com/doc/refman/5.0/en/create-table.html table_option: {ENGINE|TYPE} [=] en …
0
votes

Corel draw 13 mysql query

To follow up PhiLho's point, …
0
votes

In What Order are MySQL JOINs Evaluated

SEE http://dev.mysql.com/doc/refman/5.0/en/join.html AND start reading here: …
3
votes

Sanitizing MySQL user parameters.

mysql_real_escape_string() from mysql.com docs: The string in from is en …