Subject | Can a SQL parameter have a string value passed to a date field? |
---|---|
Author | M Tuttle (KS) |
Post date | 2005-01-08T20:10:05Z |
Greeting All,
Looking at the SQL below, is there any way to pass the following value for
Param1: CURRENT_DATE - (65 * 365)
SELECT DISTINCT P.*
FROM PERSON P
WHERE (P.BIRTH_DATE <= :Param1
AND P.LIST_DATE between :Param2 and :Param3)
Param1 cannot be hardcoded in this SQL as it is a user defined value.
Param2 and Param3 will have a regular date value entered.
Any tips appreciated.
Michael Tuttle
Software Technologies, Inc.
Topeka, KS
Looking at the SQL below, is there any way to pass the following value for
Param1: CURRENT_DATE - (65 * 365)
SELECT DISTINCT P.*
FROM PERSON P
WHERE (P.BIRTH_DATE <= :Param1
AND P.LIST_DATE between :Param2 and :Param3)
Param1 cannot be hardcoded in this SQL as it is a user defined value.
Param2 and Param3 will have a regular date value entered.
Any tips appreciated.
Michael Tuttle
Software Technologies, Inc.
Topeka, KS