oracle - Is int an undocumented alias for numeric? -
This code runs without any errors:
DECLARE files int (5); Select files from start (*) files from ODP; DBMS_OUTPUT.put_line (files); End; / What is a int for non-documentary aliases?
int standard package, you will see that the integer is only a type of number that has been declared
Subtype is INTEGER NUMBER (38,0); Just put, int is a distracted number data type, which allows you, as it stands for, only integer To archive
Comments
Post a Comment