Sequence&PLSQL视图复位
1.
create sequence T_HERMES_INVOICE_DETAILS_S
minvalue 1
maxvalue 999999999999999999999999999
start with 1
increment by 1
NOCYCLE
nocache;
2.
tools->preferences->user interface->appearance->reset docking
工具-首选项-用户界面-外观-复位停放
3.存储过程和存储函数的区别
原则:如果只有一个返回值,用存储函数,否则,就用存储过程。存储过程可以有多个返回值。