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
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 |
What is the command used to create a database using php and mysql?
How do I insert multiple rows in a table?
Write a query to stop mysql in unix
What is the default port number of mysql?
What are the differences between char and nchar?
What is dblink?
How do I change mysql password?
What are the differences between drop a table and truncate a table?
What are the critical issues you have resolved in your company
can you elaborate on blob and text in mysql? : Mysql dba
Can you shard mysql?
What is SERIAL data type in MySQL?