How do I create a table MANAGER (EMP-NO, MANAGER) where
MANAGER is a foreign key which references to EMP-NO in the
same table? Give the exact DDL.

Answers were Sorted based on User's Feedback



How do I create a table MANAGER (EMP-NO, MANAGER) where MANAGER is a foreign key which references ..

Answer / shankar v

Above one is true but a small correction is needed as below:

CREATE TABLE TB_MANAGER
(EMP-N0 CHAR(6) PRIMARY KEY NOT NULL,
MANAGER CHAR(6) NOT NULL)
IN TABLESPACE;

ALTER TABLE MANAGER
FOREIGN KEY (MANAGER) REFERENCES TB_MANAGER(EMP_NO)
ON DELETE CASCADE;

Is This Answer Correct ?    3 Yes 0 No

How do I create a table MANAGER (EMP-NO, MANAGER) where MANAGER is a foreign key which references ..

Answer / s

CREATE TABLE QUALIFIER.TABLE
(EMP-N0 CHAR(6) NOT NULL,
MANAGER CHAR(6) NOT NULL)
IN TABLESPACE;

ALTER TABLE QUALIFIER.TABLE
FOREIGN KEY FKM (MANAGER) REFERENCES QUALIFIER.TABLE
ON DELETE CASCADE;

Is This Answer Correct ?    1 Yes 1 No

How do I create a table MANAGER (EMP-NO, MANAGER) where MANAGER is a foreign key which references ..

Answer / sahil garg

CREATE TABLE TB_MANAGER
(EMPNO CHAR(6) PRIMARY KEY ,
MANAGER CHAR(6) );


ALTER TABLE TB_MANAGER
ADD CONSTRAINT TB_FK FOREIGN KEY (MANAGER) REFERENCES
TB_MANAGER(EMPNO);

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More DB2 Interview Questions

why we create view.

5 Answers  


EXPLAIN has output with MATCHCOLS = 0. What does it mean?

2 Answers  


Compare a subselect to a join?

1 Answers  


what is the difference between normal select query and currosor

2 Answers   Cap Gemini, TCS,


What do you do to keep the cursor from closing after a commit?

1 Answers  






Why do we use cursor?

0 Answers  


What is runstats and reorg in db2?

0 Answers  


define clustering index.

0 Answers  


How to get Top 10 Salaries from a Table

11 Answers   Accenture, HTC,


what is a trigger and types of triggers

3 Answers   HSBC,


How do you do the EXPLAIN of a dynamic SQL statement?

2 Answers  


What is index in db2?

1 Answers  


Categories