Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Valore casuale per la colonna DATETIME

Oggi descriverò come generare un valore casuale per il campo DATETIME all'interno di un determinato intervallo. Questo è molto utile specialmente per generare dati di test. Per questo, utilizzeremo un paio di funzioni integrate come:

  • DATEDIFF
  • DATA AGGIUNTA
  • RAND
  • TONDA

Valore DATETIME casuale

DECLARE @startDate DATETIME -- start date
DECLARE @endDate DATETIME -- end date
DECLARE @noOfSec INT -- variable
DECLARE @randomSec INT -- variable

SET @startDate = '2021-06-27 08:00 AM' -- assigning starting date
SET @endDate = '2021-06-27 08:30 AM' -- assigning end date

-- assigning end date -- Get the number of seconds within the date range
set @noOfSec = DATEDIFF(SECOND, @startDate, @endDate)

-- Get random seconds within the date range
set @randomSec = ROUND(((@noOfSec-1) * RAND()), 0)

-- Add the random seconds to get the random datetime value within the daterange
SELECT DATEADD(SECOND, @randomSec, @startDate)

Spero che questo ti sarà utile. Buon TSQL!

Questo viene pubblicato per la prima volta qui