This user account () has been banned from the forums
Viewing 15 posts - 1 through 15 (of 160 total)
Here's the query to cover your first request.
March 29, 2023 at 2:56 pm
Hi Jeff,
Using the same test data I provided I wonder if you could help me build on your code to achieve an additional outcome.
March 29, 2023 at 2:54 pm
Here's the query to cover your first request.
March 29, 2023 at 2:54 pm
Here's the query to cover your first request.
March 29, 2023 at 2:54 pm
Here's the query to cover your first request.
March 29, 2023 at 2:53 pm
Hi Jeff,
Using the same test data I provided I wonder if you could help me build on your code to achieve an additional outcome.
March 29, 2023 at 2:53 pm
First, really nice job on providing "Readily Consumable Data" AND it actually works without error! 😀
March 29, 2023 at 2:51 pm
HoF
Can you provide an example against the table I provided.
thanks.
December 5, 2022 at 7:13 pm
Thanks got it.
Cheers
October 26, 2022 at 3:44 pm
Hi Jeff,
I do like this:
SELECT circuits.name AS circuit_name
, circuits.location
, circuits.country
, r.name AS race_name
, r.round
FROM dbo.circuits
LEFT OUTER JOIN (SELECT *
FROM dbo.races
WHERE race_year = 2009
) r ON r.circuit_id =...
September 20, 2022 at 7:17 pm
Grant, sorry to be going on about this.
But just to be clear, are you saying that if not for the fact that I'm working with a OUTER JOIN everything would...
September 20, 2022 at 5:23 pm
Perfect Ed
For my educational purposes, can you let me know where the following doesn't work:
SELECT
circuits.name AS circuit_name
,circuits.location
,circuits.country
,races.name AS race_name
,races.round
FROM dbo.circuits
LEFT OUTER JOIN dbo.races
ON circuits.circuit_id = races.circuit_id
AND races.race_year...
September 20, 2022 at 3:04 pm
Hi Grant, can you give an example please.
Johan, thanks for the detailed explanation. However, the question still remains, how can I achieve the result without creating a derived table or...
September 20, 2022 at 2:01 pm
So, should I always write the code before doing the join for example doing the following will get me the right result:
First create tables / views
CREATE VIEW...
September 20, 2022 at 11:51 am
I just learned something today
Because you use "AND races.race_year = 2019" you turn your query result into the results of an inner join !
Thanks
September 20, 2022 at 10:07 am
Viewing 15 posts - 1 through 15 (of 160 total)