Stan <[EMAIL PROTECTED]> wrote:
is there a way to create user function similar to LIKE?
I'd like to use my function in clause WHERE. E.g. this selection:
SELECT * FROM Table WHERE Name MYFUNCTION param
Param is integer.

Not like this, but you can create a function and use it this way:

SELECT * FROM Table WHERE MYFUNCTION(Name, param)

Igor Tandetnik

Reply via email to