15 lines
573 B
SQL
15 lines
573 B
SQL
insert into GNPGO_FUNZIONALITA_GUI (id, funzionalita) values (
|
|
(select max(id)+1 from GNPGO_FUNZIONALITA_GUI), 'ricercaUsciteFTTH.jsf'
|
|
);
|
|
commit;
|
|
|
|
insert into GNPGO_PROFILI_FUNZIONALITA (id, profilo, funzionalita) values (
|
|
(select max(id)+1 from GNPGO_PROFILI_FUNZIONALITA),'GG',29
|
|
);
|
|
insert into GNPGO_PROFILI_FUNZIONALITA (id, profilo, funzionalita) values (
|
|
(select max(id)+1 from GNPGO_PROFILI_FUNZIONALITA),'GA',29
|
|
);
|
|
insert into GNPGO_PROFILI_FUNZIONALITA (id, profilo, funzionalita) values (
|
|
(select max(id)+1 from GNPGO_PROFILI_FUNZIONALITA),'GV',29
|
|
);
|
|
commit; |