|
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 (‘Wodget‘, 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>
SQL> SELECT * FROM product WHERE last_stock_date BETWEEN ‘01-JAN-03‘ and ‘31-DEC-03‘;
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>
SQL> DROP TABLE product;
Table dropped.
|
Tags: BETWEEN AND, BETWEEN AND laquo Select Query laquo Oracle PL SQL, BetweenAnd converts text value to date type value, Code, Oracle PL / SQL, Select Query
Posted in Uncategorized |
This entry was posted
on Saturday, July 4th, 2009 at 3:28 am and is filed under Uncategorized.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.