Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Find a record
Message
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01287531
Message ID:
01287537
Views:
16
This message has been marked as a message which has helped to the initial question of the thread.
>Consider this table:
>pk uniqueidentifier
>fk bigint
>clock datetime
>
>I need an SP that can do the following:
>If there are zero records for that day, insert a record.
>If there is one record for that day, insert a record.
>If there are two or more records for that day:
> - do nothing if the time falls between the min and max time for that day
> - update the min time record if the passed clock is less than the min time for that day
> - update the mmax time record if the passed clock is greater than the max time for that day
>
>This is what I've got. but I am not sure how to find the correct record (if needed) to update
>
>SELECT @count = count(*) FROM mytable
>WHERE fk=@fk AND
>YEAR(clock) = YEAR(@clock) AND
>MONTH(clock) = MONTH(@clock) AND
>DAY(clock) = DAY(@clock)
>
>IF @count<2 BEGIN
>	// insert this is easy
>END ELSE BEGIN
>	// find the correct @pk to update
     SELECT @Pk= PK FROM mytable
     WHERE fk=@fk AND
     YEAR(clock) = YEAR(@clock) AND
     MONTH(clock) = MONTH(@clock) AND
     DAY(clock) = DAY(@clock) and clock > @clock -- Min (similar for MAX)
      if @PK IS NULL
        -- Check for Max
     ELSE
        -- Update Min date 
>END
>
If it's not broken, fix it until it is.


My Blog
Previous
Reply
Map
View

Click here to load this message in the networking platform