salut,
j'ai un type defini comme suit
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
 
CREATE OR REPLACE TYPE typ_nom AS OBJECT
(
	nom	VARCHAR2(30),
	prenom	VARCHAR2(20)
) ;
et j'ai une table definie comme suit
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
 
create table PERSO
(
  NUM NUMBER(7) not null,
  ID  TYP_NOM,
  primary key (NUM)
)
organization index;
et j'ai pas trouver comment faire un insert into perso manuel
merci,