hi,
I have bulk data and i have insert them into a new table with identity column like as below
identity row should be A1 for first 100 rows, A2 for second 100 rows, A3 for third 100 rows, etc...........
Please help me
Thanks,
Ani
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
saida charyPosted Aug 1, 2017, 1:53 AM
Rafnas T PPosted Jul 24, 2017, 7:55 AM
when (select count(*) from yourtablename)<=200 then 'A2' when (select count(*) from yourtablename)<=300 then 'A3 'end
Rafnas T PPosted Jul 24, 2017, 7:44 AM
AniPosted Jul 24, 2017, 7:28 AM
Rafnas T PPosted Jul 24, 2017, 7:19 AM