CS157b
Chris Pollett
Feb 21, 2024
CREATE TABLE TEST(I INT) ENGINE = MYISAM; ALTER TABLE TEST ENGINE = INNODB;
CREATE INDEX FOO ON BOB(A) USING BTREE; or CREATE INDEX FOO ON BOB(A) USING HASH;
CREATE TABLE sqlite_master(
type text,
name text,
tbl_name text,
rootpage integer, // for example if 2, and block size 4096 then page
// would be filled in going backwards from 8192
// i.e., from end of page 1.
sql text
);