It seems we can’t find what you’re looking for. Perhaps searching can help.

Blogs

Free SQL Training: Dive into Databases This December!

By

Want to learn SQL and get some real practice this December? Check out the...

Playing with the Data API Builder

By

I published an article today on the Data API Builder, which is a way...

A New Word: Dolonia

By

dolonia – n. a state of unease prompted by people who seem to like...

Read the latest Blogs

Forums

how to generalize the LAG function so it keeps looking until a value is found?

By water490

Hi everyone There are situations where a value for a particular day is NULL...

Feed SQL Server logs into SIEM

By Pablo Echeverria

Comments posted to this topic are about the item Feed SQL Server logs into...

The Random Rows

By Steve Jones - SSC Editor

Comments posted to this topic are about the item The Random Rows

Visit the forum

Question of the Day

The Random Rows

If I run this code in SQL Server 2019 on Adventureworks, how many random values are returned?

SELECT TOP (10)
       be.BusinessEntityID
     , RAND (BusinessEntityID)
FROM Person.BusinessEntity AS be;

See possible answers