Some issues to be aware of in PHP operating MySQL database

Source: Internet
Author: User
Tags date modify mysql php code query set set first row mysql database
mysql| Data | database | Question 1. The exception to the semicolon

For MySQL, the first thing you have to keep in mind is that each line of its command is separated by a semicolon (;) As the end, but ... There is no absolute thing here, too, when a row of MySQL is inserted into the PHP code, it is best to omit the following semicolon, for example:

mysql_query ("INSERT into TableName" (First_Name, Last_Name)
VALUES (' $first_name ', ' $last_name ')
");

This is because PHP is also a semicolon as the end of a line, the extra semicolon sometimes let the PHP parser can not understand, so it is omitted to drop the good. In this case, although the semicolon is omitted, PHP will automatically help you when executing the MySQL command.

There is also a case without a semicolon. When you want to show the vertical of the field, instead of being lined up as usual, you can end a line of SQL statements with \g, and then you can't use a semicolon, for example:

SELECT * from penpals WHERE user_id = 1\g


2. TEXT, DATE, and SET data types

The MySQL data table fields must have a data type defined. There are about 25 options, most of which are straightforward, and it's not much of a waste of breath. But there are a few that need to be mentioned.

TEXT is not a data type, although it may be said in some books. It should actually be "LONG VARCHAR" or "Mediumtext".

The format of the date data type is YYYY-MM-DD, for example: 1999-12-08. You can easily use the date function to get the current system time in this format:

Date ("y-m-d")

Also, you can subtract between the data types to get the difference in the number of days:

$age = ($current_date-$birthdate);

Set set is a useful data type and is somewhat similar to enum enum, except that a set can hold multiple values and an enum can only hold one value. Also, a SET type can have up to 64 predetermined values, whereas an ENUM type can handle up to 65,535 predefined values. And what if you need a collection of more than 64 values? Then you need to define multiple sets to solve the problem together.

3. Wildcard characters

There are two kinds of wildcard characters for SQL: "*" and "%". Used in different situations respectively. For example: If you want to see all of the contents of a database, you can query like this:

SELECT * from dbname WHERE user_id like '% ';

Here, two wildcard characters have been used. Do they mean the same thing? are used to match any of the strings, but they are used in different contexts. "*" is used to match field names, and "%" is used to match field values. Another area that is not easily noticed is that the% wildcard character needs to be used in conjunction with the LIKE keyword.

There is also a wildcard, which is the underscore "_", which means different from the above, is used to match any single character.


4. Not NULL and NULL records

What happens if a user presses the submit button without filling in anything? If you really need a value, then you can use client script or server-side script for data validation, as already mentioned earlier. However, in the database, some fields are allowed to be empty and nothing to fill. For this type of record, MySQL is going to do something about it:

Inserts a value of NULL, which is the default action.
If you declare not NULL for it in the field definition (when you create or modify this field), MySQL will empty the field and fill out nothing.
For a field of an enum enum type, if you declare not NULL for it, MySQL inserts the first value of the enumeration set into the field. In other words, MySQL takes the first value of the enumeration set as the default value for this enumeration type.

A record with a null value is somewhat different from an empty record. % wildcard characters can match empty records, but they cannot match null records. At some point, this difference can cause some unintended consequences. As far as my experience is concerned, any field should be declared not NULL. This allows the following SELECT query statement to function correctly:

if (!$city) {$city = "%";}

$selectresult = mysql_query ("SELECT * from dbname")
WHERE first_name = ' Willow '
and last_name = ' as the Wind '
And city like ' $city '
");

In the first row, if the user does not specify a city value, then the wildcard% will be used to substitute the city variable, so that the search will take any city values into account, even if the City field is empty records.

But if there are some records, the value of the City field is NULL, then the problem arises. The above query is not able to find these fields. One solution to the problem could be this:

if (!$city) {$city = "%";}

$selectresult = mysql_query ("SELECT * from dbname")
WHERE first_name = ' Willow '
and last_name = ' as the Wind '
and (city like ' $city ' OR city is NULL)
");

Note that when searching for NULL, you must use the "is" keyword, while like does not work correctly.

The last thing to mention is that if you have some records in the database before you add or modify a new field, the value of the newly added field in the original record may or may not be null. This is also a MySQL Bug, so in this case, use SELECT query to be particularly careful.



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.