salut,
j'ai un type defini comme suit
et j'ai une table definie 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 pas trouver comment faire un insert into perso manuel
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;
merci,
Partager