No conozco alguna instrucción que haga eso, me temo que tendrás que indicarlas.
Edito:
Algo que se acerque puede ser.
Encontré esto... a ver si te sirve.
Estructura
Saludos.
Edito:
Algo que se acerque puede ser.
Código (sql) [Seleccionar]
SELECT empleados.*, trabajan.IdCargo, trabajan.IdSeccion, trabajan.IdTrab FROM empleados
INNER JOIN trabajan ON empleados.IdEmp=trabajan.IdEmp
Encontré esto... a ver si te sirve.
Estructura
Código (sql) [Seleccionar]
mysql> SHOW FIELDS FROM products;
+-------------+---------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------------+---------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| category_id | int(11) | YES | | NULL | |
| owner_id | int(11) | YES | | NULL | |
+-------------+---------+------+-----+---------+----------------+
3 rows in set (0.01 sec)
Código (sql) [Seleccionar]
mysql> SET @sql = CONCAT('SELECT ', (SELECT REPLACE(GROUP_CONCAT(COLUMN_NAME), 'id,', '') FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'products' AND TABLE_SCHEMA = 'ehn'), ' FROM products');
Query OK, 0 rows affected (0.03 sec)
Código (sql) [Seleccionar]
mysql> SELECT @sql;
+----------------------------------------+
| @sql |
+----------------------------------------+
| SELECT category_owner_id FROM products |
+----------------------------------------+
1 row in set (0.00 sec)
Saludos.