• Read the following article regarding CROSS TABS. [/url]

    This is an example on how to do it.

    SELECT [Date/Time],

    MAX( CASE WHEN Tag = 0 THEN Value END) Tag0,

    MAX( CASE WHEN Tag = 1 THEN Value END) Tag1

    FROM MyTable

    GROUP BY [Date/Time]

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2