use number value with in operator : Number Type « Data Type « Oracle PL / SQL






use number value with in operator

    
SQL>
SQL> CREATE TABLE product (
  2       product_name     VARCHAR2(25),
  3       product_price    NUMBER(4,2),
  4       quantity_on_hand NUMBER(5,0),
  5       last_stock_date  DATE);

Table created.

SQL>
SQL> INSERT INTO product VALUES ('Small Widget', 99, 1,    '15-JAN-03');

1 row created.

SQL> INSERT INTO product VALUES ('Widget',       75, 1000, '15-JAN-02');

1 row created.

SQL> INSERT INTO product VALUES ('Product 1',    50, 100,  '15-JAN-03');

1 row created.

SQL> INSERT INTO product VALUES ('Product 2',    25, 10000, null);

1 row created.

SQL>
SQL> SELECT * FROM product WHERE  product_price IN (50, 99);

PRODUCT_NAME              PRODUCT_PRICE QUANTITY_ON_HAND LAST_STOC
------------------------- ------------- ---------------- ---------
Small Widget                         99                1 15-JAN-03
Product 1                            50              100 15-JAN-03

2 rows selected.

SQL>
SQL> DROP TABLE product;

Table dropped.

SQL>

   
    
    
  








Related examples in the same category

1.Numeric Data Type Conversion Chart
2.Character Data Type Conversion Chart
3.declare number variable
4.Use number as the column type
5.Create a table with number type column: number(4)
6.Do calculation in select statement with number type column
7.Update number type column with calculation
8.Declare number variable and assign value
9.Identical declarations using NUMBER subtypes
10.A numeric variable with no specified size, no initial value
11.Use Case statement with number type value
12.NUMBER(m,n)
13.Comparison operator with number value and order by
14.Number that exceeds precision
15.Compare number value in if statement
16.Compare number value with != (not equals)
17.Compare number value with 'between ... and'
18.Compare number value with =(equals)
19.Compare number value with >
20.select 5.1d, 42f from dual
21.Initiate number value to 0
22.Add one to current number type value of counter
23.An if-then statement comparing two numeric literals