What is missing?

A statement exists that can duplicate the definition of the ‘world’table.
What is missing?
CREATE TABLE t1 ___________world

A statement exists that can duplicate the definition of the ‘world’table.
What is missing?
CREATE TABLE t1 ___________world

A.
FROM

B.
USING

C.
COPY

D.
LIKE



Leave a Reply 6

Your email address will not be published. Required fields are marked *


Auriemma Francesco

Auriemma Francesco

correct is D

Ram

Ram

REATE TABLE newtable LIKE oldtable;// creating the table
INSERT newtable SELECT * FROM oldtable;// Inserting into newtable

Ram

Ram

CREATE TABLE newtable LIKE oldtable;// creating the table
INSERT newtable SELECT * FROM oldtable;// Inserting into newtable
————-
C

Jay

Jay

D

From MySQL 5.0 Certification Study Guide by Dubois, Hinz, and Pedersen:
“Using the LIKE keyword with CREATE TABLE creates an empty table based on the definition of another table.”