About 390,000 results
Open links in new tab
  1. How to rename a table in SQL Server? - Stack Overflow

    Keep in mind that when renaming a table, you almost certainly want to also rename any references to that table that may exist in stored procedures, views, functions, etc. A quick …

  2. How to change a table name using an SQL query? - Stack Overflow

    May 20, 2009 · How can I in change the table name using a query statement? I used the following syntax but I couldn't find the rename keyword in SQL server 2005. Alter table Stu_Table …

  3. database - Rename a table in MySQL - Stack Overflow

    Sep 29, 2012 · RENAME TABLE <old_table_name> TO <new_table_name> In your query, you've used group which is one of the keywords in MySQL. Try to avoid MySQL keywords for names …

  4. SQL Server - Ways of renaming a table name - Stack Overflow

    Nov 7, 2017 · The easiest way would be to right click on the table name and click "rename". Both of your methods of using a proc are correct, though. I would caution using this procedure …

  5. Rename Oracle Table or View - Stack Overflow

    May 7, 2009 · or ALTER TABLE mytable RENAME TO othertable; or, if owned by another schema: ALTER TABLE owner.mytable RENAME TO othertable; Interestingly, ALTER VIEW …

  6. How do I rename a column in a database table using SQL?

    Oct 6, 2008 · 155 If I wish to simply rename a column (not change its type or constraints, just its name) in an SQL database using SQL, how do I do that? Or is it not possible? This is for any …

  7. Change Schema Name Of Table In SQL - Stack Overflow

    I want to change schema name of table Employees in Database. In the current table Employees database schema name is dbo I want to change it to exe. How can I do it ? Example: FROM …

  8. how to rename a table without re creating it - Stack Overflow

    I didn't find a RENAME option to alter table name. I have a case that I must rename a table, and the only way is to select with result to new table. this query cost money, and taking long time …

  9. Append SQL table name with today's date - Stack Overflow

    Apr 7, 2010 · If you split the table up and rename them with the date in the name you will constantly be building dynamic SQL to query your data. You will get compile time failures …

  10. Rename column in SQL Server - Stack Overflow

    Dec 18, 2015 · And what are you trying to accomplish? To change the values in the table, or to change the name of a column in the table, or to change the names of multiple columns?