Home > Database > Mysql Tutorial > body text

MySQL Where condition

黄舟
Release: 2016-12-27 17:30:06
Original
1657 people have browsed it

WHERE conditions

Sometimes when operating the database, only some conditional data is operated. In this case, a WHERE clause can be added to the SQL statement to specify the conditions for data operation.

Syntax:

SELECT column,… FROM tb_name WHERE definition
Copy after login

The WHERE keyword is followed by a valid expression (definition), which represents the conditions that the operated data record must meet.

Except SELECT, the WHERE condition keyword can be used in any situation allowed by SQL syntax, such as UPDATE (update), DELETE (delete), etc.

Example:

SELECT * FROM user WHERE username = 'Jack'
Copy after login
Copy after login

This example specifies the query condition for data where username is equal to Jack.

Operator description in WHERE expression:

Parameter description:

MySQL Where condition

Some WHERE examples

According to user name Query the specified user:

SELECT * FROM user WHERE username = 'Jack'
Copy after login
Copy after login

Query the user names and ID numbers registered after 0:00 a.m. on January 1, 2009:

$regdate = mktime(00, 00, 01, 01, 01, 2009);
SELECT uid,username FROM user WHERE regdate >= $regdate
Copy after login

Search for all users whose user names contain the word user:

SELECT * FROM user WHERE username LIKE '%user%'
Copy after login

Search for all users whose user names contain user or admin:

SELECT * FROM user WHERE username LIKE '%user%' OR username LIKE '%admin%'
Copy after login

The above is the content of the MySQL Where condition. For more related content, please pay attention to the PHP Chinese website (m.sbmmt.com)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!