
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
Is there an easy way to rename a table in a MySQL procedure?
Yes, use the ALTER command with RENAME. Let us first create a table −
mysql> create table DemoTable1859 ( Id int ); Query OK, 0 rows affected (0.00 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable1859 values(101); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1859 values(102); Query OK, 1 row affected (0.00 sec)
Display all records from the table using select statement −
mysql> select * from DemoTable1859;
This will produce the following output −
+------+ | Id | +------+ | 101 | | 102 | +------+ 2 rows in set (0.00 sec)
Following is the query to create a stored procedure and rename the table name −
mysql> delimiter // mysql> create procedure alter_table_name_sp() begin alter table DemoTable1859 rename exampleTable; end // Query OK, 0 rows affected (0.00 sec) mysql> delimiter ;
Call the stored procedure using call command −
mysql> call alter_table_name_sp(); Query OK, 0 rows affected (0.00 sec)
Check the table name has been changed or not using select command −
mysql> select * from exampleTable;
This will produce the following output −
+------+ | Id | +------+ | 101 | | 102 | +------+ 2 rows in set (0.00 sec)
- Related Articles
- Is there any easy way to add multiple records in a single MySQL query?
- Rename a table in MySQL using RENAME TABLE command
- Is there a way to make a list from a MySQL table in Java?
- How to rename a column in an existing MySQL table?
- How to rename a table in MySQL?
- Is there a way to name columns in an INSERT statement in MySQL?
- Easy way to re-order columns in MySQL?
- Is there a way to know your current username in MySQL?
- MySQL Stored Procedure to create a table?
- Create a temporary table in a MySQL procedure?
- Is there a way to select a value which matches partially in MySQL?
- In MySQL, is there a way to turn column records into a list?
- Is there a way to create a MySQL “alias” while creating a VIEW?
- How to add mixed fractions in an easy way?
- Is there a way to subtract number of days from a date in MySQL?

Advertisements