Is it possible to select from show tables in MySQL?
SELECT * FROM (SHOW TABLES) AS `my_tables`
Something along these lines, though the above does not work (on 5.0.51a, at least).
|
feedback
|
|
Not that I know of, unless you select from INFORMATION_SCHEMA, as others have mentioned. However, the SHOW command is pretty flexible, e.g.: SHOW tables like '%s%' | |||
|
feedback
|
|
I think what you want is MySQL's information_schema view(s): http://dev.mysql.com/doc/refman/5.0/en/tables-table.html | |||
|
feedback
|
|
I think you want See http://dev.mysql.com/doc/refman/5.0/en/tables-table.html | |||
|
feedback
|
|
I don't understand why you want to use SELECT * FROM as part of the statement. | |||
|
feedback
|
|
How about: SELECT t.{fieldname} FROM (SHOW COLUMNS FROM {tablename}) as t; I desperately need this to work | ||||
|
feedback
|
This will return the comment on: myTable.myColumnName | ||||
|
feedback
|
That should be a good start. For more, check INFORMATION_SCHEMA Tables. | |||
|
feedback
|
|
Have you looked into querying INFORMATION_SCHEMA.Tables? As in
| ||||
|
feedback
|
|
Yes, SELECT from table_schema could be very usefull for system administration. If you have lot of servers, databases, tables... sometimes you need to DROP or UPDATE bunch of elements. For example to create query for DROP all tables with prefix name "wp_old_...":
| |||
|
feedback
|