MSSQL
Interaction and Query Syntax
SELECT name FROM sys.databases; #Show databases
SELECT name FROM sys.tables; #Show tables
USE $databaseName; #Select a database
SELECT * FROM table $tableName; #Get all the information from a tableLast updated