Viewing 13 posts - 31 through 43 (of 43 total)
This may be a little off topic, so if so just say so.
The query statement below works fine:SELECT ProjectNumber, ProductName
FROM JobDetail
WHERE (ProjectNumber LIKE...
July 3, 2018 at 9:34 am
No data was returned with the first query.
July 2, 2018 at 3:12 pm
Seems to prefer this, but I'm not sure how spaces consistently ended up in the data:SELECT ProjectNumber, ProductName
FROM JobDetail
WHERE (ProjectNumber LIKE '%16-2506%')
I...
July 2, 2018 at 3:02 pm
Chris:
This last post works great! I just would not mind having a textbook that goes into these things a little deeper. Do you know if one exists?
July 11, 2017 at 1:21 pm
Chris:
Much thanks for your patience. I have read a few books and just do not see this. Can you tell me a good reference to purchase for the...
July 11, 2017 at 11:24 am
Hello:
My dilemma with this is that the last solution is no different than my first, except that it returns more data. My goal is to return less data here. I'm...
July 10, 2017 at 3:05 pm
sgmunson:
Thank you so much for the help on this. Here is the solution:
WITH P AS (SELECT DISTINCT F.DocumentID, F.[Filename], F.LatestRevisionNo, V.ValueText, V.VariableID
...
July 10, 2017 at 2:04 pm
It seems to work, except for RV.Revision No.
Don't I need to somehow include this. You have a column called recentness with a descending value for RevisionNo, so it seems.
In my...
July 10, 2017 at 1:51 pm
Good call, table fields.
When I do the alias, I need to add ON, such as ON V3.DocumentID = V.DocumentID.
DocumentID seems to be the only field available to...
July 10, 2017 at 12:10 pm
Okay, I figured the table thing out, but how does this help me? How to I harvest that data.
I realize this is confusing, or at least I...
July 10, 2017 at 10:00 am
Can you tell me what variables to do this on? This format loses the Pivot Table, and VariableID is not available.
Thanks!
SELECT DISTINCT F.DocumentID, F.[Filename],...
July 10, 2017 at 9:34 am
Hello:
So this seems to have addressed my issue with the PIVOT portion of this query. Can you tell me, what is wring here? It dows not seem to...
July 10, 2017 at 8:36 am
Hello:
Thanks for your reply.
I created the table, but I do not see it anywhere? Can you guide me to where it put it, or how to...
July 10, 2017 at 7:25 am
Viewing 13 posts - 31 through 43 (of 43 total)