Compare number value with > : Number Type « Data Type « Oracle PL / SQL






Compare number value with >

   

SQL> CREATE TABLE customers
  2  (
  3     id                NUMBER,
  4     address    VARCHAR2(40),
  5     postal_code       VARCHAR2(10),
  6     city              VARCHAR2(30),
  7     state_province    VARCHAR2(40),
  8     income_level      VARCHAR2(30),
  9     credit_limit      NUMBER
 10  );

Table created.

SQL>
SQL>
SQL> select id, state_province, credit_limit
  2  from   customers
  3  where  state_province = 'UT'
  4  and    credit_limit > 10000;

no rows selected

SQL>
SQL>
SQL> drop table customers;

Table dropped.

   
    
    
  








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.use number value with in operator
14.Comparison operator with number value and order by
15.Number that exceeds precision
16.Compare number value in if statement
17.Compare number value with != (not equals)
18.Compare number value with 'between ... and'
19.Compare number value with =(equals)
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