You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Queries for retrieving metadata about schemas, tables and columns.
-- Get the list of schemasSELECT*FROMinformation_schema.schemata;
-- Get the list of tablesSELECT*FROMinformation_schema.tablesWHERE table_schema ='mydb';
-- Get the list of columnsSELECT*FROMinformation_schema.columnsWHERE table_schema ='mydb'AND table_name ='test';
-- Get the list of table columns with their data types and primary keysSELECT
ordinal_position,
column_name,
data_type,
character_maximum_length,
is_nullable,
column_key
FROMinformation_schema.columnsWHERE
table_schema ='mydb'AND table_name ='test';
Data inspector should be available also for MySQL databases.
The analysis of the extension below can be useful for the implementation of this feature:
https://github.com/microsoft/azuredatastudio-mysql
The text was updated successfully, but these errors were encountered: