Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is primary key?

Answers were Sorted based on User's Feedback



what is primary key?..

Answer / ramprakash

A primary key is used to uniquely identify each row in a
table

Is This Answer Correct ?    23 Yes 4 No

what is primary key?..

Answer / guest

a key is defined unique and not null in a column is called
primary key

Is This Answer Correct ?    17 Yes 1 No

what is primary key?..

Answer / guest

It is a combination of unique and notnull

Is This Answer Correct ?    10 Yes 0 No

what is primary key?..

Answer / vinod singh kushwah

A primary key is used to uniquely identify each row in a
table. It can either be part of the actual record itself ,
or it can be an artificial field (one that has nothing to
do with the actual record). A primary key can consist of
one or more fields on a table. When multiple fields are
used as a primary key, they are called a composite key.
Primary keys can be specified either when the table is
created (using CREATE TABLE) or by changing the existing
table structure (using ALTER TABLE).
Below are examples for specifying a primary key when
creating a table:

MySQL:

CREATE TABLE Customer
(SID integer,
Last_Name varchar(30),
First_Name varchar(30),
PRIMARY KEY (SID));

Oracle:

CREATE TABLE Customer
(SID integer PRIMARY KEY,
Last_Name varchar(30),
First_Name varchar(30));

SQL Server:

CREATE TABLE Customer
(SID integer PRIMARY KEY,
Last_Name varchar(30),
First_Name varchar(30));
Below are examples for specifying a primary key by altering
a table:

MySQL:

ALTER TABLE Customer ADD PRIMARY KEY (SID);

Oracle:

ALTER TABLE Customer ADD PRIMARY KEY (SID);

SQL Server:

ALTER TABLE Customer ADD PRIMARY KEY (SID);

Is This Answer Correct ?    6 Yes 1 No

what is primary key?..

Answer / arkchowdary

primary Key ----------- It is used to uniqely identify
each row in a table.

It is a combination of unique and Notnull.

A primary key can consist of one or more fields on a table.
When multiple fields are
used as a primary key, they are called a composite key.

Is This Answer Correct ?    4 Yes 0 No

what is primary key?..

Answer / sajeda

it is defined as the candidate key that is selected to
identyfi tuple uniqly within a relation.
* it is not contain null value.

Is This Answer Correct ?    4 Yes 0 No

what is primary key?..

Answer / kiran

to simply answer this question - a primary key is something
which has both unique and not null constraints on the
colums-table

Is This Answer Correct ?    2 Yes 0 No

what is primary key?..

Answer / dhanu

A column that has completely unique data throughout the
table is known as Primary Key.

Is This Answer Correct ?    3 Yes 2 No

what is primary key?..

Answer / parthiban.s

primary Key is a unique one.in a table only one primary
key is available. it;s not accepted null values

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Oracle General Interview Questions

How to use an explicit cursor without open statements?

0 Answers  


How to best split csv strings in oracle 9i?

0 Answers  


How to create an initialization parameter file?

0 Answers  


Explain the concept of the DUAL table.

2 Answers  


how to code performance tuning of oracle PL/SQL? can any body send me the perfect answer?

1 Answers   IBM,


Hi Guys,I have completed my B.com Commerc in the year 2005 and MBA finance in 2008(Correspondance).And I have 3+yrs exp in Accounting and Finance feild.I have worked for TCS for 1.8yrs as Project manage office as a enduser in oracle ERP module.Currently working as Project Adminstartor for CSC.I have joined in Oracle financial classes and I am through with that subject.So my concern is After learning oracle, am in dilemma that will i be eligible to get job in oracle or not?Please advice or Give me suggestions.To kick start my career as fresher in Oracle

0 Answers  


What happens if recursive calls get out of control?

0 Answers  


"primary key=unique+null" is equal,reson?not,reason?

5 Answers  


Explain the importance of .pll extension in oracle?

0 Answers  


How to create a new tablespace in oracle?

0 Answers  


src name sex a,male b,female c,male d,female Required output : male female a,b c,d tried pivot but was not successfull select * from src pivot (max(name) for sex in ('MALE','FEMALE'));

0 Answers   IBM,


What is background process in Oracle?

0 Answers   MCN Solutions,


Categories
  • Oracle General Interview Questions Oracle General (1803)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)