如果重复相同的数据,我需要为行提供行号值
输入
create table test(id int,name varchar(10),sal int)
insert test values(101,'hdfc',15000)
insert test values(101,'hdfc',15000)
insert test values(101,'hdfc',15000)
select id+name+sal from test
预期输出:
lineno:1 101,hdfc,15000
lineno:2 101,hdfc,15000
lineno:3 101,hdfc,15000
如果插入了新记录,那么它应该从lineno1
ex 开始:
lineno:1 101,IDBI,15000
注意: lineno 是硬编码值,但数字应该增加。