VonFranzken
MIS
I have a recordset in dreamweaver, I know!
SELECT *
FROM dbo.activityout
WHERE activityname LIKE '%MMColParam%'
The variable is set to filter by url parameter id which is assigned to MMColParam through a variable.
Lets say I have a record of John O'Conor
And I search for John O'Conor at ABCD, the recordset says it cannot find any matches when it should have found John O'Conor.
Is there any way of making the SQL stronger so it would have found it?
Steve
SELECT *
FROM dbo.activityout
WHERE activityname LIKE '%MMColParam%'
The variable is set to filter by url parameter id which is assigned to MMColParam through a variable.
Lets say I have a record of John O'Conor
And I search for John O'Conor at ABCD, the recordset says it cannot find any matches when it should have found John O'Conor.
Is there any way of making the SQL stronger so it would have found it?
Steve