최신Oracle Certified Professional, MySQL 5.6 Developer (1z0-882日本語版) - 1z0-882日本語무료샘플문제




Mysql> SELECT * FROM friends;


SELECT AVG (age) FROM friends














SELECT col1 FROM t1 WHERE col1< 100
UNION
SELECT col1 FROM t1 WHERE col1 BETWEEN 100 and 200
UNION ALL
SELECT col1 FROM t1 WHERE col 1 >=900


Mysql> explain select comic_ title, publisher from comics where comic_title like '& Action&';

row in set (0.00 sec)

CREATE INDEX cimic_title_idx ON comics (comic_title, publisher);

Mysql > explain select comic_title ,publisher from comics where comic_title like '& Action&';

1 row in set (0.00 sec)
