Changes to PASS Voting Eligibility
There was a blurb in the Connector today about an eligibility change for voting. The “change” is a requirement to...
2014-01-08
385 reads
There was a blurb in the Connector today about an eligibility change for voting. The “change” is a requirement to...
2014-01-08
385 reads
Ran into a new-to-me quirk this week while putting together a couple of reports. I have a summary report (essentially...
2014-01-08
513 reads
Ninth annual!
Yes, Orlando Code Camp #9 this year, being held at Seminole State College on March 22, 2014. I’ve submitted...
2014-01-07
358 reads
Cell phones are incredibly useful tools. Even a bad one is better than not having one, but a bad phone...
2014-01-07
467 reads
It’s been 18 or 19 months since I upgraded from the Droid X to the Maxx. The X was a...
2014-01-06
372 reads
Just received an email from my friend Ryan Duclos announcing the South Alabama Day of .Net in Mobile, Alabama, on...
2014-01-06
341 reads
I get a lot of email about job opportunities, almost none of which interest me enough to call back about...
2014-01-03
285 reads
Possibly as many as forty million credit cards used at Target were compromised. A staggering breach and a cautionary tale...
2014-01-02
960 reads
A quiet and rainy day here in Orlando today. Not my favorite weather, but good for thinking, mostly about what...
2014-01-02
318 reads
As required, the Board has posted proposed changes to the bylaws for review by the members. The changes are fairly...
2013-12-26
524 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
By Steve Jones
One of the nice things about Flyway Desktop is that it helps you manage...
I'm fairly certain I know the answer to this from digging into it yesterday,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
hi everyone I am not sure how to write the query that will produce...
I have some data in a table:
CREATE TABLE #test_data
(
id INT PRIMARY KEY,
name VARCHAR(100),
birth_date DATE
);
-- Step 2: Insert rows
INSERT INTO #test_data
VALUES
(1, 'Olivia', '2025-01-05'),
(2, 'Emma', '2025-03-02'),
(3, 'Liam', '2025-11-15'),
(4, 'Noah', '2025-12-22');
If I run this query, how many rows are returned?
SELECT *
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t; See possible answers