sql >> Base de Datos >  >> RDS >> Sqlserver

Generación automatizada de datos mensuales en SQL

El pseudocódigo:

START    
for each record in master-record
begin
      get the %MONTH% and %YEAR% of the record
      create new record with day:1, month=%MONTH%, and year=%YEAR%, Transaction='Please pay your rent', and etc.
      add the record and calculate the balance
end
add final-record 'Advanced Money Record' with the calculated balance

END

Si se le ocurrió la idea, puede traducirla a tsql-stored-proc.