Ask a Question related to Coldfusion Database Access, Design and Development.
-
KevCB #1
Need help with SQL Query
Hi folks,
I'm having trouble trying to get an SQL Query working with a join. I have two
tables, one called Vacancy and the other called MonitoringData.
This is the layout of the tables:
Vacancy
VacancyRef - (Primary Key, data type is varchar)
VacancyTitle
Department
VacancyDetails
MonitoringData
MDataID - (Primary Key, data type is auto increment)
VacancyRef
Gender
MaritalStatus
AgeBand
... I won't add the rest, since you can see them in the query, but hopefully
you get the picture.
Anyway, when I try and run the query I get the following error:
Line 1: Incorrect syntax near '.'.
And this is the Query I'm using:
SELECT DISTINCT md.MDataID, md.VacancyRef, md.Gender, md.MaritalStatus,
md.AgeBand, md.EthnicGroup, md.EthnicOrigin, md.OtherEthnicDesc, md.Disability,
md.DisabilityDetails, md.AdvertSource, v.VacancyRef v.VacancyTitle,
v.VacancyDept, v.VacancyDetails
FROM dbo.MonitoringData md RIGHT OUTER JOIN
dbo.Vacancy v ON md.VacancyRef = v.VacancyRef
Can anyone help with this?
Thanks
KevCB 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 throwing weird exception
One workaround: I had added rows to a cfsearch query, and set a numeric value in custom1 field that that query provides. A query of queries... -
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...



Reply With Quote

