15 lines
226 B
SQL
15 lines
226 B
SQL
SPOOL create_cate_v.lst
|
|
|
|
CREATE OR REPLACE VIEW categories_v AS
|
|
SELECT cate_id
|
|
, code
|
|
, name
|
|
, interuptible
|
|
, units
|
|
, number_format
|
|
, display_sequence
|
|
FROM categories
|
|
/
|
|
|
|
SPOOL OFF
|