oracle中的序列创建

发布于 2024-11-08 06:34:52 字数 441 浏览 0 评论 0原文

我想在oracle中创建一个序列,其中列字段(Empid)的最大值必须是序列的最小值。

下面是我在同一个 stackexchange 中找到的命令。

create sequence mytemp_seq start with &v_Startval;

此命令提示我输入必须输入的列名称的最大值。

如何在不提示的情况下修复 &v_startval 的值,而是直接从下面的语句中设置值

select max(empid) from mytemp..

我正在尝试如下

create sequence mytemp_seq start with (SELECT MAX(empid) from mytemp)

但它不起作用。

I want to create a sequence in oracle where the max value of the column field (Empid) must be the min value of the sequence.

The below was the one i found in our same stackexchange

create sequence mytemp_seq start with &v_Startval;

This command prompts me to enter the max value of teh column name which i have to enter.

How can I fix the value of &v_startval with out it prompting ,but directly setting the values from the below statement

select max(empid) from mytemp..

I am trying like this below

create sequence mytemp_seq start with (SELECT MAX(empid) from mytemp)

But it doesnt work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甚是思念 2024-11-15 06:34:52

你可以用一些 PL/SQL 来做到这一点:

declare
  v_startval integer;
begin
  select max(empid)+1 into v_startval from mytemp;
  execute immediate 'create sequence mytemp_seq start with ' || v_startval;
end;

You could do it with some PL/SQL:

declare
  v_startval integer;
begin
  select max(empid)+1 into v_startval from mytemp;
  execute immediate 'create sequence mytemp_seq start with ' || v_startval;
end;
埖埖迣鎅 2024-11-15 06:34:52

在 sqlplus 中你可以这样做

col max_id new_value seq_min_val  
SELECT MAX(empid)+1 AS max_id from mytemp;
create sequence mytemp_seq start with &seq_min_val;

In sqlplus you can do

col max_id new_value seq_min_val  
SELECT MAX(empid)+1 AS max_id from mytemp;
create sequence mytemp_seq start with &seq_min_val;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文