Can I remove the default constraint columns in SQL SERVER?
Answer Posted / krishnakumar
table create time must constraint name is important..create
time not use constraint name don't delete don't delete
constraint column
alter table table_name drop constraint <constraint name>
table create time use this query
create table delete_table(emp_id int constraint del_pk
primary key,age int)
constraint name delere query
.............................
alter table delete_table drop constraint del_pk
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is the command to change the recovery model?
Tell me what is log shipping?
Tell me what are cursors and when they are useful?
Why is replication required on the sql server?
Can sql servers linked to other servers like oracle?
What is the current pricing model of SQL Azure?
What to perform pattern match with the like operator?
Explain the steps needed to create a scheduled job?
How to rename an existing column with sql server management studio?
What to check if a User database is locked?
How can you check the level of fragmentation on a table?
whats the maximum size of view state??
What happens if date-only values are provided as date and time literals?
Do you know what are the properties of the relational tables?
How to create an inline table-valued function?