I came across a somewhat special syntax, could you help in figuring out what it means? Thank you.
SELECT ROW NUMBER() OVER (ORDER BY Product.ProductID) FROM Product; Also, this fails. I'm particularly interested in the ROW NUMBER() OVER bit. It's the first time I've encountered the OVER keyword, too.
Please let me know if you need the full example. I shortened it a bit for the sake of clarity.