SELECT
InformationProvider.concernRoleID,
InformationProvider.name,
InformationProvider.typeCode,
InformationProvider.confidentialityInd,
InformationProvider.statusCode,
InformationProvider.comments,
InformationProvider.primaryAlternateID,
InformationProvider.paymentFrequency,
InformationProvider.nextPaymentDate,
InformationProvider.currencyType,
InformationProvider.methodOfPmtCode,
InformationProvider.versionNo
INTO
:concernRoleID,
:name,
:typeCode,
:confidentialityInd,
:statusCode,
:comments,
:primaryAlternateID,
:paymentFrequency,
:nextPaymentDate,
:currencyType,
:methodOfPmtCode,
:versionNo
FROM
InformationProvider
WHERE InformationProvider.methodOfPmtCode = :methodOfPmtCode
AND InformationProvider.nextPaymentDate <= :nextPaymentDate
|