v.1.1.54362New Feature
RENAME TABLE Can Be Used for VIEW
RENAME TABLEcan be performed forVIEW.
Why it matters
This feature extends the functionality of theRENAME TABLE SQL command to allow renaming of VIEWs. Previously, users could rename only tables, but with this enhancement, views can also be renamed, improving management and flexibility of database objects.How to use it
Users can rename views just like tables using theRENAME TABLE command. For example:RENAME TABLE old_view_name TO new_view_name;