Previous |
Next
What is SQL IN?The SQL IN operator enables a comparison to a list of values or to the results of a SUBSELECT. Why Use SQL IN?The SQL IN operator is a clean way to check for inclusion in lists without creating a series of OR clauses. How To Use SQL INSQL IN is used as follows. SQL IN Syntax
There must be one or more members of the value_list. Numeric and non-numeric values are supported. SQL IN Example The following example selects information from the BRANCH where the region_nbr is IN a specified list of region_nbr values. Here are the contents of the table:
Table: BRANCH
This SQL Statement with IN is executed:
Here is the result.
|
SQL OVERVIEW
SQL BASICS
SQL SELECT
SQL WHERE
SQL INSERT
SQL UPDATE
SQL DELETE
SQL ADMINISTRATION
SQL CREATE DATABASE
SQL DROP DATABASE
SQL CREATE TABLE
SQL ALTER TABLE
SQL DROP TABLE
SQL CREATE INDEX
SQL DROP INDEX
SQL ADD FOREIGN KEY
SQL DROP FOREIGN KEY
SQL CREATE VIEW
SQL DROP VIEW
SQL ADVANCED
SQL CONCAT
SQL SUBSTRING
SQL TRIM
SQL AND & OR
SQL IN
SQL BETWEEN
SQL LIKE
SQL DISTINCT
SQL GROUP BY
SQL AGGREGATE
SQL HAVING
SQL ORDER BY
SQL JOIN
SQL OUTER JOIN
SQL SYNTAX
| HOME | SQL OVERVIEW | SQL BASICS | SQL ADMINISTRATION | SQL ADVANCED | SQL SYNTAX |
| Copyright© 1999-2006, First Place Software, Inc. |






