Ondelete clause is specified with
a.)Drop table
b.)Delete command
c.)Create table
d.)Select command

Answers were Sorted based on User's Feedback



Ondelete clause is specified with a.)Drop table b.)Delete command c.)Create table d.)Select comm..

Answer / osboatdan

delete command

Is This Answer Correct ?    9 Yes 2 No

Ondelete clause is specified with a.)Drop table b.)Delete command c.)Create table d.)Select comm..

Answer / manish

create command

Ex.
CREATE TABLE mailing_group (
id int unsigned NOT NULL AUTO_INCREMENT ,
mailing_id int unsigned NOT NULL,
group_type enum('Include', 'Exclude'),
entity_table varchar(64) NOT NULL,
entity_id int unsigned NOT NULL,
PRIMARY KEY ( id ),
CONSTRAINT FK_civicrm_mailing_group_mailing_id FOREIGN
KEY (mailing_id) REFERENCES civicrm_mailing(id) ON DELETE
CASCADE
) ENGINE=MyISAM DEFAULT CHARACTER SET utf8 COLLATE
utf8_unicode_ci ;

Is This Answer Correct ?    6 Yes 2 No

Ondelete clause is specified with a.)Drop table b.)Delete command c.)Create table d.)Select comm..

Answer / sriram

Delete command

Is This Answer Correct ?    3 Yes 1 No

Ondelete clause is specified with a.)Drop table b.)Delete command c.)Create table d.)Select comm..

Answer / shilpa

Delete command

Is This Answer Correct ?    0 Yes 0 No

Ondelete clause is specified with a.)Drop table b.)Delete command c.)Create table d.)Select comm..

Answer / guest

C

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More MySQL Interview Questions

In which language it is written?

0 Answers  


What are the differences between char and varchar data types?

0 Answers  


Why we use mysql database?

0 Answers  


What is the maximum size of mysql database?

0 Answers  


What is the difference between b-tree and hash indexes?

0 Answers  






What is the use of mysql_close()?

0 Answers  


How to decrement dates by 1 in mysql?

0 Answers  


which version of mysql can't support stored procedure??

3 Answers  


What does tinyint mean?

0 Answers  


Is mariadb faster than mysql?

0 Answers  


HOW TO FIND display the total number of weeks in the year of 1998 IN EMP TABLE

0 Answers  


What does do in mysql?

0 Answers  


Categories