Oracle快速入门(序列、索引)
-- 创建序列
CREATE SEQUENCE seq_customer_id
START WITH 1
INCREMENT BY 1
NOMAXVALUE;
-- 创建索引
CREATE INDEX idx_customer_last_name ON customers(last_name);
这段代码首先创建了一个名为seq_customer_id
的序列,该序列从1开始,每次自增1,没有设置最大值限制。接着,它在customers
表的last_name
列上创建了一个名为idx_customer_last_name
的索引,以优化基于last_name
列的查询性能。
评论已关闭