Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从你那里得到一些建议。我将构建另一个包含 md5 列的表。我正在考虑的一件事是搜索条件。例如,使用 md5 - ee321bb135275bca6c00bbcd14a3ae09 比较目的地是否很好?
例子
SELECT * FROM MY_TABLE WHERE SID='ee321bb135275bca6c00bbcd14a3ae09' ORDER BY ID ASC LIMIT 0,20
问候,
添加并索引到 SID 列,我认为应该没问题:
ALTER TABLE MY_TABLE ADD INDEX IDX_SID(SID);