Friday, December 4, 2020

mySQL: Get a table's structure

How do I find out all the columns in my table?

 

mySQLExplanationSQL Server
desc mysql.user;

Gets the information for the table mentioned. exec sp_help 'sys.syslogins';



No comments:

Post a Comment