v.25.6New Feature
It's now possible to write USE DATABASE
It's now possible to writeUSE DATABASE nameinstead ofUSE name. #81307 (Yarik Briukhovetskyi).
Why it matters
This feature enhances SQL syntax clarity and readability by allowing users to explicitly specify that they are switching databases with theUSE DATABASE command, reducing potential ambiguity.How to use it
Users can change the current database context by executing the SQL command:USE DATABASE <database_name>;This functions identically to the previously supported
USE <database_name> syntax.