Geeks Talk

Prepare for your Next Interview




How to alter the primary column

This is a discussion on How to alter the primary column within the SQL forums, part of the Databases category; Alter perform on primary key column please give me the query for how to alter the primary column from the table....


Go Back   Geeks Talk > Databases > SQL

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 02-05-2008
Junior Member
 
Join Date: Nov 2007
Location: MUMBAI
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
lekhrajdeshmukh is on a distinguished road
How to alter the primary column

Alter perform on primary key column please give me the query for how to alter the primary column from the table.
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 02-05-2008
Expert Member
 
Join Date: Apr 2007
Location: Bangalore
Posts: 447
Thanks: 20
Thanked 54 Times in 54 Posts
susarlasireesha is on a distinguished road
Re: How to alter the primary column

Through Alter command we can add or drop primary key
examples
ALTER TABLE emp
ADD CONSTRAINT empno_pk PRIMARY KEY (empno);
To add primary key to existing table ,we must take care that primary key column field(fields) must be not null and not duplicate.

To Drop primary key:

alter table emp
drop constraint empno_pk
Reply With Quote
  #3 (permalink)  
Old 02-05-2008
Moderator
 
Join Date: Jun 2007
Location: Bangalore,India
Posts: 1,432
Thanks: 8
Thanked 125 Times in 112 Posts
debasisdas will become famous soon enoughdebasisdas will become famous soon enough
Re: How to alter the primary column

To drop the primary key can also use

alter table table_name drop primary key;
Reply With Quote
Reply

  Geeks Talk > Databases > SQL


Thread Tools
Display Modes


Similar Threads

Thread Thread Starter Forum Replies Last Post
How to alter a type in SQL Geek_Guest SQL 8 02-06-2008 03:51 AM
Column for Primary Key viveksqa SQL 3 01-23-2008 06:13 AM
2 tables with no primary key pdave SQL Server 3 01-17-2008 04:51 AM
Restrictions with Alter command fred SQL 3 09-04-2007 12:35 AM
Can we set the primary key for item_master yusuf_sagari Oracle 1 05-11-2007 07:11 AM


All times are GMT -4. The time now is 09:24 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Copyright © 2008 GeekInterview.com. All Rights Reserved