Hi,
I have created the table as below.
create table test(id numeric(4),name character varying(8));
I need to insert null as below.
insert into test values(null,'aaa');
But I am getting error as "Integer expecting..."
Can you please help me on this.
Regards,
Prasad