SQL*plus

Résolu
fayal -  
mystic_wolf Messages postés 9 Statut Membre -
BSR,je veux savoir comment(?) on fait pour créer une table sur SQL*plus
A voir également:

1 réponse

mystic_wolf Messages postés 9 Statut Membre 2
 
tu tape la commande: create table nom_de_table (attribut1 son_type,attribut2 son_type.....);

Ex : on veut creer la table etudiant qui contient les champs suivants: no_etudiant,nom,prenom...

donc: create table etudiant(no_etudiant varchar2(5),nom varchar2(10),prenom varchar2(10));
1