Answer Posted / sonia
Using the DROP COMMAND-
See the eg below--
create table stup(roll int,name varchar,marks int)
insert into stup values(1,'A',10)
insert into stup values(2,'B',20)
select * from stup
Alter table stup drop column marks
select * from stup
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
How to download microsoft sql server 2005 express edition?
What is SQL Azure Firewall?
Does sql server 2000 full-text search support clustering?
What is pivot and unpivot?
What is database replication?
What are information schema views?
What is query processing?
what is a self join? : Sql server database administration
What are different types of database indexes?
What is difference between commit and rollback when used in transactions?
How would you use user_constraints table in DB?
How do I connect to sql server database?
You have developed an application which uses many stored procedures and triggers to update various tables users ocassionally get locking problems which tool is best suited to help you diagnose the problem?
How to delete an existing row with delete statements in ms sql server?
Explain index in sql server?