Want to create serial numbers(想要创建序列号)
本文介绍了想要创建序列号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要生成序列号
例如
我有,
NID
-----
ABD90
BGJ89
HSA76
我想要,
ID NID
---------
1 ABD90
2 BGJ89
3 HSA76
我应该为这个结果运行什么代码?请帮帮我.
What code should I run for this outcome? Please help me.
推荐答案
既然你标记了SAS,那我就用SAS来回答.
Since you tagged SAS, I'll answer with SAS.
根据您的问题,从该输入中获取结果就像这样简单
Based on your question, getting that result from that input would be as simple as this
data result;
ID=_N_;
set input;
run;
或
proc sql;
select ID as monotonic()
,NID
from input
;
quit;
在纯 Oracle 中你会这样做
In pure Oracle you would do this
select rownum, NID
from input
但是,您可能希望在其中添加 ORDER BY,因为每次运行时您可能会得到不同的结果.
However you might want to throw on ORDER BY in there because you'll likely get different results every time you run that.
这篇关于想要创建序列号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:想要创建序列号
基础教程推荐
猜你喜欢
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01