Hi All
Can we call a user defined function as default value for a column ??
for example:
create or replace function test1 return number is
begin
return 10;
end;
create table testt
(id as test1,
name varchar2(20));
getting error:
Error at line 1
ORA-02000: missing ( keyword
Thanks
Ashwani
Edited by: Ashwani on Jan 16, 2012 1:19 AM