I have these tables:
mysql> describe clientes;
+----------------+-------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------------+-------------+------+-----+---------+----------------+
| id_cliente | int(11) | NO | PRI | NULL | auto_increment |
| nombre_cliente | varchar(25) | YES | | NULL | |
| calle_cliente | varchar(40) | YES | | NULL | |
| ciudad_cliente | varchar(12) | YES | | NULL | |
+----------------+-------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)
mysql> describe saldo;
+---------------+------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+---------------+------------+------+-----+---------+-------+
| numero_cuenta | varchar(5) | NO | PRI | NULL | |
| saldo | int(11) | YES | | NULL | |
+---------------+------------+------+-----+---------+-------+
But I want to make a table with the primary keys of each table, It can? If so, how?