New Year Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: simple70

Oracle MySQL 8.0 Database Administrator 1z0-908 Question # 13 Topic 2 Discussion

Oracle MySQL 8.0 Database Administrator 1z0-908 Question # 13 Topic 2 Discussion

1z0-908 Exam Topic 2 Question 13 Discussion:
Question #: 13
Topic #: 2

Examine this statement, which executes successfully:

1z0-908 Question 13

Now examine this query:

1z0-908 Question 13

Which two statements can do this? (Choose two.)


A.

ALTER TABLE employees -

ADD INDEX (birth_date DESC);


B.

ALTER TABLE employees -

ADD INDEX ((MONTH(birth_date)));


C.

ALTER TABLE employees -

ADD COLUMN birth_month tinyint unsigned GENERATED ALWAYS AS (MONTH(birth_date)) VIRTUAL NOT NULL,

ADD INDEX (birth_month);


D.

ALTER TABLE employees -

ADD COLUMN birth_month tinyint unsigned GENERATED ALWAYS AS (birth_date->>'$.month') VIRTUAL NOT NULL,

ADD INDEX (birth_month);


E.

ALTER TABLE employees -

ADD INDEX ((CAST(birth_date->>'$.month' AS unsigned)));


F.

ALTER TABLE employees -

ADD INDEX (birth_date);


Get Premium 1z0-908 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.