Not equal in where : Where « Where Clause « SQL / MySQL

SQL / MySQL
1. Backup Load
2. Command MySQL
3. Cursor
4. Data Type
5. Database
6. Date Time
7. Flow Control
8. Function
9. Insert Delete Update
10. Join
11. Key
12. Math
13. Procedure Function
14. Select Clause
15. String
16. Table Index
17. Transaction
18. Trigger
19. User Permission
20. View
21. Where Clause
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
SQL / MySQL » Where Clause » Where 
Not equal in where

/*
mysql> select * from Student;
+-----------+------------+-----------+
| StudentID | first_name | last_name |
+-----------+------------+-----------+
|         1 | John       | Jones     |
|         2 | Gary       | Burton    |
|         3 | Emily      | Scarlett  |
|         4 | Bruce      | Lee       |
|         5 | Anna       | Wolff     |
|         6 | Vic        | Andrews   |
|         7 | Steve      | Alaska    |
+-----------+------------+-----------+
7 rows in set (0.00 sec)

mysql> select * from Student WHERE first_name != "Bruce" AND last_name != "Jones
";
+-----------+------------+-----------+
| StudentID | first_name | last_name |
+-----------+------------+-----------+
|         2 | Gary       | Burton    |
|         3 | Emily      | Scarlett  |
|         5 | Anna       | Wolff     |
|         6 | Vic        | Andrews   |
|         7 | Steve      | Alaska    |
+-----------+------------+-----------+
5 rows in set (0.02 sec)


*/
Drop table Student;

CREATE TABLE Student (
   StudentID INT NOT NULL PRIMARY KEY,
   first_name      VARCHAR(50NOT NULL,
   last_name      VARCHAR(50NOT NULL
   
)TYPE = InnoDB;


INSERT INTO Student (StudentID,first_name, last_nameVALUES (4,'Bruce', 'Lee');

INSERT INTO Student (StudentID,first_name, last_nameVALUES (1,'John', 'Jones');
INSERT INTO Student (StudentID,first_name, last_nameVALUES (2,'Gary', 'Burton');
INSERT INTO Student (StudentID,first_name, last_nameVALUES (7,'Steve', 'Alaska');
INSERT INTO Student (StudentID,first_name, last_nameVALUES (5,'Anna', 'Wolff');
INSERT INTO Student (StudentID,first_name, last_nameVALUES (6,'Vic', 'Andrews');
INSERT INTO Student (StudentID,first_name, last_nameVALUES (3,'Emily', 'Scarlett');

select from Student;
                                 
select from Student WHERE first_name != "Bruce" AND last_name != "Jones";


           
       
Related examples in the same category
1. Getting the List of Products That Are on Catalog Promotion
2. Using Where Conditions
3. WHERE Clause Comparisons
4. Combining WHERE Conditions
5. Calculation in WHERE clause
6. Compare and calculate in Where clause
7. Do Calculation in Where and order
8. Where clause: nested conditions
9. Where clause: calculation and equal condition
10. Where clause: compare
11. Where clause: XOR
12. Use where clause the narrow down results
ww__w_.__ja___v___a__2s_._c_o__m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.