Click here to Skip to main content
15,885,897 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am logged in mysql database successfully. And when i run mysql query
SQL
SELECT user FROM mysql.user

It shows many user like: my_database, dba_upload, db_reg and many more.
I am currently logged in my_database.
My question is how to access tables and columns of dba_upload.
Is there any Mysql query that can help me..
Thanks.
Posted

1 solution

SQL
SHOW COLUMNS FROM dba_upload;


http://dev.mysql.com/doc/refman/5.0/en/show-columns.html[^]
 
Share this answer
 
Comments
Alamgirable 20-Aug-14 15:07pm    
dba_upload is not a name of database,It is a name of user.
onelopez 20-Aug-14 21:39pm    
oh. Might want to look at instead. Not to familiar with this show grant.. hopefully this points you in the right direction

http://dev.mysql.com/doc/refman/5.0/en/show-grants.html

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900