Hello,
I am hiiting the wall trying to get Distinct work in my query.
Here is the code:
<cfquery name="get_admin_rank" datasource="HomePage">
SELECT rank.request_id, request.request_id, postweeks.request_id, distinct(postweeks.pw_id), request.key_postweek,
postweeks.postweek, admin_rank, headline, url, image_path, related_headline, related_url, DESCRIPTION
from postweeks
join rank
on postweeks.request_id = rank.request_id
join request
on postweeks.request_id = request.request_id
WHERE 0=0
<cfif isDefined("form.key_postweek")>
<cfif #key_postweek# is not "">
or request.key_postweek = '#form.key_postweek#'
</cfif>
</cfif>
<cfif isDefined("form.postweek")>
<cfif #form.postweek# is not "">
or postweeks.postweek = '#form.postweek#'
</cfif>
</cfif>
and REQUEST.STATUS != 'DELETED'
ORDER BY rank.admin_rank
</cfquery>
Here is the error:
Error Executing Database Query.
[Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect syntax near the keyword 'distinct'.
The error occurred in D:\Inetpub\ line 24
22 : or postweeks.postweek = '#form.postweek#'
23 : </cfif>
24 : </cfif>
25 : and REQUEST.STATUS != 'DELETED'
26 : ORDER BY rank.admin_rank
Please help!
Thank you
Olchik
I am hiiting the wall trying to get Distinct work in my query.
Here is the code:
<cfquery name="get_admin_rank" datasource="HomePage">
SELECT rank.request_id, request.request_id, postweeks.request_id, distinct(postweeks.pw_id), request.key_postweek,
postweeks.postweek, admin_rank, headline, url, image_path, related_headline, related_url, DESCRIPTION
from postweeks
join rank
on postweeks.request_id = rank.request_id
join request
on postweeks.request_id = request.request_id
WHERE 0=0
<cfif isDefined("form.key_postweek")>
<cfif #key_postweek# is not "">
or request.key_postweek = '#form.key_postweek#'
</cfif>
</cfif>
<cfif isDefined("form.postweek")>
<cfif #form.postweek# is not "">
or postweeks.postweek = '#form.postweek#'
</cfif>
</cfif>
and REQUEST.STATUS != 'DELETED'
ORDER BY rank.admin_rank
</cfquery>
Here is the error:
Error Executing Database Query.
[Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect syntax near the keyword 'distinct'.
The error occurred in D:\Inetpub\ line 24
22 : or postweeks.postweek = '#form.postweek#'
23 : </cfif>
24 : </cfif>
25 : and REQUEST.STATUS != 'DELETED'
26 : ORDER BY rank.admin_rank
Please help!
Thank you
Olchik