About 14,600,000 results
Open links in new tab
  1. How do I rename a MySQL database (change schema name)?

    To rename a database in HeidiSQL, just right click on the database name and select 'Edit'. Then enter a new name and press 'OK'. It is so simple.

  2. SQL Query to Rename Database - GeeksforGeeks

    May 13, 2025 · To change the name of a database in SQL, use the following syntax: MySQL: For MySQL versions 5.1.23 and later, the RENAME DATABASE command is no longer supported. …

  3. Ways to Rename a Database in MySQL 8 (3 Ways) - Sling Academy

    Jan 26, 2024 · Renaming a database can be essential during a system upgrade, rebranding, or just making database names more descriptive. In MySQL 8, there isn’t a direct RENAME …

  4. How to Rename MySQL Database - TecAdmin

    Apr 26, 2025 · In this tutorial, you will find three methods to rename a MySQL database. Method 1 – Rename MySQL Database with Command Line. As you know that there is no direct …

  5. How to rename the Database name in MySQL? - California …

    Nov 7, 2024 · To rename a database name in MySQL, you can use the following query: RENAME DATABASE old_database_name TO new_database_name; Replace old_database_name with …

  6. How to rename a MySQL database? - Server Fault

    Jan 10, 2023 · In order to rename a MySQL database you can do one of the following: CREATE database new_db_name; RENAME TABLE db_name.table1 TO new_db_name.table1, …

  7. How to change the name of existing database in mysql

    Apr 3, 2021 · How to update the MySQL database or how can we change the name of our existing MySQL database. In this tutorial, We will cover all the possible ways to change the …

  8. How to Use the SQL ALTER DATABASE Statement to Modify

    The MODIFY NAME clause lets you easily change the database name. For example, to rename a database from "old_db" to "new_db": ALTER DATABASE old_db MODIFY NAME = new_db; …

  9. Renaming a MySQL database - A2 Hosting

    Learn how to rename a MySQL database with this complete walkthrough including detailed instructions, relevant code snippets, and links to related articles. This article explains how to …

  10. How do I change the database name using MySQL? [duplicate]

    Nov 12, 2015 · You can change the database name using MySQL interface. Go to http://www.hostname.com/phpmyadmin. Go to database which you want to rename. Next, go …

  11. Some results have been removed
Refresh