/* 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