Ask a Question related to Coldfusion Database Access, Design and Development.
-
tystadb #1
Collation sequence in query of query
Sorting a list of names which may contain apostrophes produces a different
sequence of the results between SQL Server and query of query. For example,
sorting Oliver, O'Toole, Ouch in SQL Server results in O'Toole, Oliver, Ouch
when sorted from a query of a query. Does anybody know any way around this
problem?
tystadb Guest
-
Query of Queries on query New type query
In CF5 we have a page that creates a query, using queryNew and querySetCell and the like, we then used dbtype="query" and gave it's name so we could... -
Query of Query LIKE and Wild Card chars
I am tyring to use the 'LIKE' comparison within a Query of Query. The Query is shown below. <cfquery dbtype="query" name="GetFileList"> select... -
Convert a query to a list, or find an item in a query
Hi All, I am using CFPOP to retrieve mail from a server, then delete each message after I retrieve it. What I want to do is to check that I don;t... -
CAML Query: Multiple Query Fields Issue
I need to Create a CAML Query Dynamically with VB to a Sharepoint WebService GetListItems Method. The User Could Select 1 to X Number of IDs... -
BCP query out executed by xp_cmdshell works fine from query analyzer but fails from VB Component
Hi all, I have a stored procedure which returns a vast number of record and i have to write the output into a csv file. I'm using BCP utility to... -
paross1 #2
Re: Collation sequence in query of query
Perhaps you could select an additional column in your original query, where you
strip the single quotes from the string using the SQL REPLACE() function, then
order on this additonal column in your Q-of-Q (you really don't need to ever
display it in your output)
For example,
<cfquery name ="Q1" datasource ="DSN">
SELECT name, REPLACE(name, CHAR(39), '') AS sort_col
FROM yourtable
WHERE whatever
</cfquery>
then in your Q-of-Q
<cfquery name="yourQofQ" dbtype="query">
SELECT *
FROM Q1
WHERE whatever
ORDER BY sort_col
</cfquery>
There are probably easier ways to do this, but this is just what happened to
pop into my head.
Phil
paross1 Guest



Reply With Quote

