Select Database
USE college; selects which database later statements talk to. It does not print the table. Think: open this cupboard, then look at registers inside.
In Workbench the schema you highlight is the same idea. In an app, the connection already names the database, so you often skip USE.
Check — SELECT DATABASE(); shows the one in use. NULL means you did not select any.
Trap — running SELECT * FROM students without USE, and MySQL says ‘No database selected’.
On the example next to this theory — Select Database — sELECT projects columns; WHERE filters; ORDER BY sorts.
FROM students
│
▼
WHERE city = 'Pune'
│
▼
SELECT name, marksExam tip
USE college; then SELECT DATABASE();