USE database
Selects the specified database so that after running the query we don't need to specify the database for other queries related to the specified one
USE university
For example we can list all columns from any of the table inside the selected database without specifying it. MySQL will know that we mean already the selected database
SHOW COLUMNS FROM students
by Valeri Tandilashvili
4 years ago
MySQL
USE
1
Pro tip: use ```triple backticks around text``` to write in code fences