Vaibhav
Answered On : Apr 2nd, 2012
Code
ALTER TABLE table_name
RENAME TO new_table_name;
Example:-
ALTER TABLE departments
RENAME TO dept ;

1 User has rated as useful.
Login to rate this answer.
ravinder
Answered On : May 4th, 2012
alter table table_name_old rename to table_name_new;
Login to rate this answer.
SQL >> rename table_name1 to new_table_name;
Login to rate this answer.
shikha
Answered On : Feb 3rd, 2013
sp_RENAME old_table_name, new_table_name
Login to rate this answer.