lealone / Lealone

比 MySQL 和 MongoDB 快10倍的 OLTP 关系数据库和文档数据库
Other
2.48k stars 520 forks source link

如何创建两个字段联合的唯一索引, 是不是不支持 #184

Closed zhoujin7 closed 1 year ago

zhoujin7 commented 1 year ago

或者有什么办法保证两个字段联合的唯一性 除了联合主键

codefollower commented 1 year ago
CREATE TABLE IF NOT EXISTS index_test (f1 int, f2 int, f3 varchar);

CREATE UNIQUE INDEX IF NOT EXISTS index_test_uidx1 ON index_test (f2, f3);
zhoujin7 commented 1 year ago

https://github.com/lealone/Lealone/blob/7d98207cf040deac07a6409e753721017d015d28/lealone-db/src/main/resources/org/lealone/common/resources/help.csv 这个是帮助文件