Código:
Inserto el primero sin problemas, para insertar el segudno, hay alguna forma de "saltarse" el SELECT? es decir, algo similar a esto:mysql> describe pruebaJuntos1; +--------+-------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +--------+-------------+------+-----+---------+----------------+ | id | int(11) | NO | PRI | NULL | auto_increment | | nombre | varchar(20) | NO | | NULL | | +--------+-------------+------+-----+---------+----------------+ 2 rows in set (0.00 sec) mysql> describe pruebaJuntos2; +-----------+---------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-----------+---------+------+-----+---------+----------------+ | id | int(11) | NO | PRI | NULL | auto_increment | | idDelOtro | int(11) | NO | | NULL | | +-----------+---------+------+-----+---------+----------------+ 2 rows in set (0.00 sec)
Código:
pero que funcione.mysql> INSERT INTO pruebaJuntos2 VALUES(0, pruebaJuntos1.id); ERROR 1054 (42S22): Unknown column 'pruebaJuntos1.id' in 'field list'
Gracias!!!