Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: matthewspatrickPosted on 2007-08-16 at 18:26:38ID: 19714089
SELECT DISTINCT t1.RowID,
(SELECT t2.Value FROM YourTable t2 WHERE t2.RowID = t1.RowID AND Type = 'Date') AS Date,
(SELECT t2.Value FROM YourTable t2 WHERE t2.RowID = t1.RowID AND Type = 'Val1') AS Val1,
(SELECT t2.Value FROM YourTable t2 WHERE t2.RowID = t1.RowID AND Type = 'Val2') AS Val2,
(SELECT t2.Value FROM YourTable t2 WHERE t2.RowID = t1.RowID AND Type = 'Val3') AS Val3
FROM YourTable t1
ORDER BY t1.RowID