How to delete an attribute from the emp table
Answers were Sorted based on User's Feedback
Answer / swetha
we can directly ALTER OR DROP the column AND THEN COMMIT ON
IT SO THAT IT GETS MODIFIED
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / amit srivastava
create table stup(roll int,name varchar,marks int)
select * from stup
Alter table stup drop column marks
select * from stup
Is This Answer Correct ? | 1 Yes | 0 No |
we can delete an attribute through delete command.
Is This Answer Correct ? | 1 Yes | 8 No |
What is difference between index seek vs. Index scan?
Explain about extended stored procedure?
what is IDE,DMV in sql server?
How to replace the Query Result 'Null Value' with a text ?
How to define the name and server for a new dsn?
How do I run a trace in sql server?
Define outer join in sql server joins?
When would you use an insert into .. Select option versus an insert into .. Values option? Give an example of each?
How to loop through result set objects using odbc_fetch_row()?
How do I open port 1433?
Can we call stored procedure in view in sql server?
How to delete duplicate rows in sql server?