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
What is the advantage of sql server?
How do I run sql server 2014?
How to change the password of a login name in ms sql server?
Write down the syntax and an example for create, rename and delete index?
What is the difference between having clause and where clause in sql server?
What are the advantages of user-defined functions over stored procedures in sql server?
What is set nocount on?
Why the trigger fires multiple times in single login?
What are the types of ssrs?
How to skip remaining statements in a loop block using continue statements?
What is data modeling and Reterminal integrity?
What is filtered index?
What is data source document?
Please illustrate physical database architecture? : SQL Server Architecture
How to generate create view script on an existing view?