1st line got executed very well.
CREATE SEQUENCE order_seq MINVALUE 1 START WITH 1 INCREMENT BY 1 CACHE 20;
2nd line is throwing an error " COLUMN NO ALLOWED". what could be the possible reason.i tried but not able to find it.
CREATE TABLE INVOICE (INVOICE_id NUMBER DEFAULT order_seq.NEXTVAL,Description VARCHAR2(30));