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.
假设我有一个包含字段的表:
id|name|value
例如,我想创建一个索引,以防止在 name == 'Bob' 时 value > 0 的记录条目。MySQL 是否有任何这样的本机功能,还是需要将其编程到我的应用程序逻辑中?
您需要对其进行编程,主要也是更好的方法,因为您不希望数据库验证您的查询。只是为了运行您的查询。