Viewing 15 posts - 166 through 180 (of 1,360 total)
Each number you test for primality needs O(sqrt(n)*n) calculations, so it will slow down for larger numbers. Also, if you increase @n to 10 times its previous value each...
June 15, 2023 at 2:02 pm
You only need to test up to the square root of a number to test for primality, which is quite a saving:
declare @n ...
June 14, 2023 at 3:03 pm
Oh you're right. This is not the final version but I'm not finding my notes on this. Iirc if you follow the links it leads to a SQLlite script with...
June 14, 2023 at 1:22 pm
For exhaustive methods it's quicker to only look at odd numbers. There was a Youtube video a little while ago where they compared all different programming languages to determine which...
June 14, 2023 at 10:34 am
Ok thanks. Yeah maybe I misread this one. When there are spaces in object labels it causes flashbacks to a difficult job
June 7, 2023 at 12:52 pm
Is the QUOTENAME to make the sample data? 🙂
June 6, 2023 at 1:11 pm
Looking at the first picture above the ordering of the Hours doesn't seem clear. Is it ASCENDING by [Run Start Time]? In the output, when the System value equals 6,...
June 6, 2023 at 12:28 pm
Why settle a tie using query logic, what about a unique index? Some or one of those could be helpful. A table containing holidays to exclude could be useful too. ...
June 4, 2023 at 12:23 pm
Doh, well I'd like to edit my edit in the previous post. Instead of "Removed IN from WHERE clause" it should say "Removed IN from WHEN condition" or something like...
June 1, 2023 at 1:36 pm
Maybe add a boolean column to the partition
select *, v.grp,
[test33] = case when v.grp=1
...
June 1, 2023 at 12:16 pm
Thanks to ChatGPT for creating the temp table
DROP TABLE if exists #TempTable;
go
CREATE TABLE #TempTable
(
ID INT,
flag int,
...
May 31, 2023 at 1:17 am
For the first query ChatGPT-4 generated
WITH CompanyAverageRent AS (
SELECT c.CompanyId, AVG(p.Rent) AS AverageRent
FROM #Companies c
JOIN...
May 30, 2023 at 11:03 pm
What happens if/when there are gaps in the CreatedDate column for particular CustomerID's?
May 23, 2023 at 2:57 pm
additional JOIN's and CROSS APPLY's apply to the rectangle defined immediately above it (in order of appearance) within the FROM clause
May 21, 2023 at 1:43 pm
Thinking outside the box is part of the reason I can solve problems fairly quickly as I use approaches that are not always predefined.
Thinking inside rectangles is how I...
May 21, 2023 at 1:29 pm
Viewing 15 posts - 166 through 180 (of 1,360 total)