How can i change the column name.
Answers were Sorted based on User's Feedback
Answer / durgaprasad
sp_rename 'tablename.oldcolumnname','newcolumnname'
| Is This Answer Correct ? | 31 Yes | 3 No |
Answer / kinthada cnu
hi all
sp_rename 'tablename.oldcolumnname','newcolumnname','column'
| Is This Answer Correct ? | 18 Yes | 4 No |
Answer / ramesh5782
ALTER TABLE table_name
RENAME COLUMN old_name to new_name;
| Is This Answer Correct ? | 22 Yes | 17 No |
Answer / harsh v m
Sonia, clear your doubt here.
AS keyword is used for aliasing some existing column name
for our convenience.But the column name doesn't change @
database.
But incase of renaming a column the change is reflected @
database n it's usually done if we wish changing property
of a particular column.
sp_rename 'tablename.oldcolumnname','newcolumnname'->This
actually works out for Sql 2000.ALTER TABLE key doesn't
help.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / y.narendra kumar
This example renames the contact title column in the
customers table to title.
EXEC sp_rename 'customers.[contact
title]', 'title', 'COLUMN'
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / naren
update tablename set newcolumn name where old column name
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dipti sonawane
alter table (table_name)
change (old_colomnname)(new_colomnname)
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / om
the alter command is used to do modification at column level . so in order to change the name of a column we need to use alter .
command:- alter table (table name) rename (old column name) to (new column name)
note :- dont put brackets its just for u to understand
| Is This Answer Correct ? | 0 Yes | 0 No |
Give an example of SQL injection attack ?
Every night you run a full backup after every 3 three hours you make a differential backup every hour you make an incremental backup in a worst-case scenario, how much work you can lose?
What is the difference between local table and global table
1 Answers CarrizalSoft Technologies, Polaris,
Where are full-text indexes stored?
what is difference between having and where clause ?
plz send every query in sql server2000
Explain how many normalization forms?
What is Primary key and foreign key? Give an example
When would you use the stored procedures or functions?
How to Update from select query in sql server?
How to convert numeric expression data types using the cast() function?
What do you understand by mirroring and mention the advantages of the mirroring?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)