MySQL Forums
Forum List  »  Newbie

Re: How can I return column-name?
Posted by: Roland Bouman
Date: July 22, 2005 10:42AM

There's another way altogether. The mysql database contains a columns_priv table (or something like that, sorry, haven't got a mysql runnning here so i can't be specific right now).

If it is permissable to grant a user select access to that table, you can use that table to see what columns a table has:

select distinct column_name
from mysql.columns_priv
where host = '%'
and db = database()
and user = current_user()
and table_name = 'some table'

or something more appropriate for your system

Options: ReplyQuote


Subject
Written By
Posted
Re: How can I return column-name?
July 22, 2005 10:42AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.