please could you help me? I am trying to understand how Sybase ase SQL works.
Basically I have a query like this:
select ClientId,StartDate,EndDate from TableName
And I need to create a temporary table where I will have
ClientID = A, StartDate 20180101, 1
ClientID = A, StartDate 20190101, 2
ClientID = A, StartDate 20200101, 3
ClientID = B, StartDate 20180101, 1
ClientID = B, StartDate 20190101, 2
ClientID = C, StartDate 20190101, 1
ClientID = C, StartDate 20200101, 2
Do you know how to create it? I looked around but I could not find any suitable solution (rownum does not work and creating
SELECT row_number = identity(32),t.*
INTO #TempTable
does not work (in this case I get [1,2,3,4,5,6,7] instead of [1,2,3,1,2,1,2]
Thank you for your help!
OP hasn't provided the table DDL, nor a sample set of
insert
statements, so a few assumptions:StartDate
is a varchar() (for the sake of this answer; should be able to switch todate
,datetime
ordatetime
without any issues)EndDate
is not required in the desired output (per OP's example output)(ClientId, StartDate)
is unique (otherwise the proposed answer - below - will not generate the desired results)Sample data:
As @Impaler has mentioned, Sybase ASE does not support 'window functions' so we need to get a bit creative.
One idea using a self join:
NOTE: This query may perform poorly for larger data sets and/or where there are no useful indexes, ymmv ...
Demonstrating what happens if the
(ClientId, StartDate)
pair is not unique ...Assume our data set looks like:
The proposed query generates:
If the proposed query does not work in OP's environment it may be necessary for OP to provide a minimal, reproducible example; in particular, provide a sample
create table
andinsert into
statements to adequately demonstrate the real data set.