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 |
Differentiate between SQL and ORACLE joins and write their syntax.
What is primary key, unique key, and foreign key?
How many types of TRIGGERS are there in MS SQL Server?
8 Answers CarrizalSoft Technologies, TCS, United Healthcare,
write coding for importing sql data into a word excel...
What is The Use Of TIMESTAMP DataType in SQL Server 2005?
How to Display, Amount of Disk Activity Generated by Transact-SQL Statements?
How to create a testing table with test data in ms sql server?
How can a user-defined datatype be created?
How to provide column names in insert statements in ms sql server?
What is cursor ? And what is difference between Trigger ?
Which language is supported by sql server?
What is the exact numeric data type in sql?