09/04/2005, 19:38
|
| | | Fecha de Ingreso: noviembre-2003 Ubicación: Concepción Chile
Mensajes: 100
Antigüedad: 21 años, 1 mes Puntos: 0 | |
te refieres a esto o no?
Código:
create table TABLE1
(id int primary key, nombre varchar(100) not null, fono varchar(13) );
create table TABLE2
(codigo1 int, condigo2 int, nombre varchar(100), constraint CLAVECOMPUESTA primary key (codigo1,codigo2) );
|