Ask a Question related to Coldfusion Database Access, Design and Development.
-
mxuser #1
query questions
Hi guys i have a peoblem.
i have a database table from which i need to select data.
this is then used to select records from another table.
the results are to be used in a cfmail query using data for another table.
how do you run this type of quey on seperate tables?
how would you suggest how to do this?
i am stumped.
mxuser 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... -
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... -
2 questions :) - portal questions
Say the portal displays a relationship that uses the Box_ID field as the match field on both sides. In the child file (items in the box), add two... -
match query questions
select foo1.myid, foo1.MyDate, MAX(foo2.subDate) from foo1 join foo2 on foo1.myid = foo2.myid where foo1.MyDate in ( foo2.subDate ,... -
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... -
boughtonp #2
Re: query questions
More information on how the tables are structured would help, but something
like this will work...
<cfquery name="A" datasource="#Request.Datasource#">
SELECT table_name, column_list, conditions
FROM tableA
</cfquery>
<cfloop query="A">
<cfquery name="InfoQuery" datasource="#Request.Datasource#">
SELECT #column_list#
FROM #table_name#
WHERE #conditions#
</cfquery>
<cfmail to="someone" from="me" subject="#table_name# data" type="HTML">
<cfdump var="#InfoQuery#"/>
</cfmail>
</cfloop>
boughtonp Guest
-
Dan Bracuk #3
Re: query questions
You can do this in one query either by joining on a field, or using a subquery.
This question is very elementary. If you are going to use cold fusion for
anything but your own personal projects, you would be wise to learn sql, and
data modelling.
Originally posted by: mxuser
Hi guys i have a peoblem.
i have a database table from which i need to select data.
this is then used to select records from another table.
the results are to be used in a cfmail query using data for another table.
how do you run this type of quey on seperate tables?
how would you suggest how to do this?
i am stumped.
Dan Bracuk Guest
-
mxuser #4
Re: query questions
thanks for your help apprecited.
however the task is a little more complicated than my original question
reveals.
table a contains useid and selection criteria.
table b contains data to be seelcted fusing table a criteria
thi s may produce 0 or several rows of data fro each row of data from table a.
output then needs to go to table a userid to select email from table b
cfmail it all.
does the logic make sense?
i cant workout the join loop sequence to make this all work
hey ho
and dan everybody starts somehwere thanks
mxuser Guest



Reply With Quote

