sql and or asp





SQL And & Or

















Home
SQL Basics:

SQL HOME
SQL Introduction
SQL Select
SQL Where
SQL And & Or
SQL Between
SQL Distinct
SQL Order By
SQL Try It
SQL Insert
SQL Update
SQL Delete
SQL Count

SQL Advanced:

SQL Functions
SQL Group By
SQL Aliases
SQL Join
SQL Create
SQL Alter

SQL Quiz Test

Resources:

SQL Books












SQL And & Or




AND & OR

AND and OR join two or more conditions in a WHERE clause.

The AND operator displays a row if ALL conditions listed are true. The OR operator displays a row if ANY of the conditions listed are true.



Original Table (used in the examples)


LastName
FirstName
Address
City


Hansen
Ola
Timoteivn 10
Sandnes


Svendson
Tove
Borgvn 23
Sandnes


Svendson
Stephen
Kaivn 18
Sandnes





Example

Use AND to display each person with the first name equal to
"Tove", and the last name equal to "Svendson":



SELECT * FROM Persons
WHERE FirstName='Tove'
AND LastName='Svendson'


Result:


LastName
FirstName
Address
City


Svendson
Tove
Borgvn 23
Sandnes


Example

Use OR to display each person with the first name equal to "Tove", or the last name
equal to
"Svendson":



SELECT * FROM Persons
WHERE firstname='Tove'
OR lastname='Svendson'


Result:


LastName
FirstName
Address
City


Svendson
Tove
Borgvn 23
Sandnes


Svendson
Stephen
Kaivn 18
Sandnes



Example

You can also combine AND and OR (use parenthesis to form complex
expressions):



SELECT * FROM Persons WHERE
(FirstName='Tove' OR FirstName='Stephen')
AND LastName='Svendson'


Result:


LastName
FirstName
Address
City


Svendson
Tove
Borgvn 23
Sandnes


Svendson
Stephen
Kaivn 18
Sandnes



 




Jump to : Top Of Page or HOME.


We Help you for free. Please Help us!

Help us correct errors
Help us with spelling and grammar
Tell us what you think
Link to us from your pages



All information in this Web is for training only. We do not make any warranties of its correctness or
its fitness to be used. The risk of using it remains with the user.
Copyright © 1999-2001 by Refsnes Data. All Rights Reserved.










More Tutorials:


HTML  XHTML
XML  XSL
CSS  DTD
WAP  WML
JavaScript
DHTML  Flash
VBScript  ASP
SQL  AppML






News:

The Future ofProgramming

Web Security

Browser News

Web Standards






References:

HTML 4.01 Ref

XHTML 1.0 Ref

WML 1.1 Ref

CSS Reference

XSLT Elements

ASCII Reference

Entity Reference

HTML Colors

Color Values

Color Names

WAP Pages






Validation:


HTML  XHTML
CSS  DTD
XML  WML







About W3Scripts

Please link to us








Larger Text?








 XML Partners:


















Wyszukiwarka