topical media & game development
basic-mysql-13-ch13-TryItOut.sql / sql
/* Chapter 13 - Try It Out sections */
/* Try It Out: Enabling Query and Binary Logging on Linux */
CREATE TABLE t1 (c1 INT);
INSERT INTO t1 VALUES (12);
SELECT * FROM t1;
DROP TABLE t1;
exit
/* Try It Out: Enabling Query and Binary Logging on Windows */
CREATE TABLE t1 (c1 INT);
INSERT INTO t1 VALUES (12);
SELECT * FROM t1;
DROP TABLE t1;
exit
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.