PHP 05 ebook php ebooks
ebook, php January 25th, 2010The WHERE Clause
To conditionally select data from a table, a WHERE clause can be added to the
SELECT statement.
SELECT column FROM table WHERE column operator value
With the WHERE clause, the following operators can be used:
= Equal
<> Not equal
> Greater than
< Less than
>= Greater than or equal
<= Less than or equal
BETWEEN Between an inclusive range
LIKE Search for a pattern
Note: In some versions of SQL the <> operator may be written as !=
hotfile download: php 05 ebooks php ebooks
April 3rd, 2010 at 5:46 am
Как раз то, что нужно….
The WHERE Clause
To conditionally select data from a table, a WHERE clause can be added to the
SELECT statement…..