Viewing 2 posts - 1 through 2 (of 2 total)
[font="Verdana"]SWEEEEEET --- thank you!!!![/font] 😛
January 26, 2012 at 12:44 am
#1438593
Thanks, yes I mean adajacent days. Here a table script:
CREATE TABLE dbo.EmployeeStatus
(
MID intnot null
Datum datenot null
ID_Status intnot null
);
GO
INSERT INTO dbo.EmployeeStatus(MID, Datum, ID_Status) VALUES(7, '2012-01-02',1);
INSERT INTO...
January 26, 2012 at 12:35 am
#1438592