Sign in
apache
/
hive
/
refs/heads/HiveAggregateReduceFunctionsRule
/
.
/
hplsql
/
src
/
test
/
queries
/
offline
/
create_table_mysql.sql
blob: 86afa286daef0ee3ef64f4e9cf876a3b7c7aa43a [
file
] [
log
] [
blame
]
CREATE
TABLE
IF
NOT
EXISTS
`
users
`
(
`
id
`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`
name
`
text
NOT
NULL
,
PRIMARY
KEY
(`
id
`)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
latin1 COMMENT
=
'users table'
AUTO_INCREMENT
=
20
;