not in (1,2,3,NULL) : Query IN « Select Query « Oracle PL / SQL






not in (1,2,3,NULL)

    

SQL> create table registrations
  2  ( attendee    NUMBER(4)
  3  , course      VARCHAR2(6)
  4  , begindate   DATE
  5  , evaluation  NUMBER(1)
  6  , constraint  R_PK        primary key (attendee,course,begindate)
  7  ) ;

Table created.

SQL>
SQL> insert into registrations values (2,'SQL',date '2009-04-12',4   );

1 row created.

SQL> insert into registrations values (14,'SQL',date '2009-04-12',5   );

1 row created.

SQL> insert into registrations values (6,'SQL',date '2009-04-12',4   );

1 row created.

SQL> insert into registrations values (11,'SQL',date '2009-04-12',2   );

1 row created.

SQL> insert into registrations values (8,'SQL',date '2009-10-04',NULL);

1 row created.

SQL> insert into registrations values (9,'SQL',date '2009-10-04',3   );

1 row created.

SQL> insert into registrations values (13,'SQL',date '2009-10-04',4   );

1 row created.

SQL> insert into registrations values (13,'SQL',date '2009-12-13',NULL);

1 row created.

SQL> insert into registrations values (6,'SQL',date '2009-12-13',NULL);

1 row created.

SQL> insert into registrations values (3,'OAU',date '2009-08-10',4   );

1 row created.

SQL> insert into registrations values (12,'OAU',date '2009-08-10',4   );

1 row created.

SQL> insert into registrations values (13,'OAU',date '2009-08-10',5   );

1 row created.

SQL>
SQL> select *
  2  from   registrations
  3  where  evaluation not in (1,2,3,NULL);

no rows selected

SQL>
SQL>
SQL> drop table registrations;

Table dropped.

   
    
    
    
  








Related examples in the same category

1.Query with an IN operator
2.Use in operator with number type values
3.Use in operator with 'and' in where clause
4.Use in operator with table join
5.Using the IN operator: compare with OR
6.NOT IN processes a null in a list of values
7.Use in operator with varchar2 type value
8.all customers who have placed at least one order from us in the last month
9.not in vs not exists
10.Value pair and in operator
11.All attendees whose id is not in the list
12.Use in operator to match three employee numbers