需要正确索引包含许多要搜索字段的表的建议
我有一个包含许多列的用户表,它看起来大致像这样:
dname: { type: string(255), notnull: true }
email: { type: string(255), notnull: true, unique: true }
email_code: { type: string(255) }
email_confirmed: { type: boolean, default: false }
profile_filled: { type: bool ...