在 MySQL 中,我需要创建一个名为 users 的新表,其中包含以下字段:
id – integer type (primary key)
first_name – varchar type
username – varchar type
password – char type with length 40 (this is the length of a sha1 hash)
type – varchar type (‘admin’ or ‘author’)
一切看起来都很简单,除了
type – varchar type (‘admin’ or ‘author’) .
我该怎么做呢?