Skip to main content
SQL

SQL

Programming languageWikipedia

Search complete. 806 mentions across 222 episodes found for "SQL".

Sep 11, 2026

Claire AirdHOST
9:14
The researcher timed their release to come after Microsoft's Patch Tuesday security updates.
Claire AirdHOST
9:20
And finally, AWS has fixed a vulnerability in its Athena serverless SQL service that exposed data and database queries to other customers.
Claire AirdHOST
9:31
The vulnerability could have been exploited by adding the catalog equal system parameter to any Athena SQL query.
Claire AirdHOST
9:39
AWS disabled the parameter and fixed the issue across all regions within four days of being notified last month.
Claire AirdHOST
9:47
And that is all for this podcast edition.
Christopher BaileyHOST
10:03
It's by previous guest and creator of the Narwhals Library, Marco Gorelli.
Christopher BaileyHOST
10:08
Uh, it's titled The Polars versus SQL Differences Nobody Is Talking About.
Christopher BaileyHOST
10:13
Some of these crucial differences that he is highlighting here, I'll read from the second paragraph.
Christopher BaileyHOST
10:18
It's titled Mental Models.
Christopher BaileyHOST
10:37
[laughs] This allows for column independence.
Christopher BaileyHOST
10:40
Row order is defined, but as we will also see later, Polars doesn't always promise to preserve it.
Christopher BaileyHOST
10:46
SQL is a programming language used to interact with databases which follow the relational model.
Christopher BaileyHOST
10:53
In the relational model, a table is an unordered bag of rows, each of which is atomic, meaning that it can't be split up.
speaker_0HOST
0:51
After that, we will head over to Kubernetes, discussing the release of GKE 1.37 and a container-eyed privilege escalation vulnerability.
speaker_0HOST
1:02
Then we will cover image updates in Managed Service for Apache Spark, Cloud SQL's regional endpoints going GA, and big updates in networking, identity, and cloud storage.
speaker_0HOST
1:14
We have a lot of ground to cover, so let's get right into it.
speaker_0HOST
1:21
First up, let's talk about BigQuery.

10 MINS LATER

speaker_0HOST
11:32
So make sure to connect using a standard non-root user like Dataproc and run commands with sudo.
speaker_0HOST
11:41
Now let's dive into some database and serverless updates.
speaker_0HOST
11:45
First up, regional endpoints are now generally available for Cloud SQL, MySQL, PostgreSQL, and SQL Server Admin APIs.
speaker_0HOST
11:55
Instead of hitting a single global endpoint, You can now interact with your Cloud SQL instances using regionalized URLs like SQL admin region representative googleapis.com.
Hussein NasserHOST
1:15
That's why in memory caches became so popular.
Hussein NasserHOST
1:21
Oh, what do you mean this SQL query is so slow? and I can just cache it? Wow, that sounds amazing.
Hussein NasserHOST
1:30
So instead of taking time to understand why something is slow, we took the shortcut of executing it once or maybe per process and then cache the results somewhere so someone else can consume the results.
Hussein NasserHOST
1:53
Inevitably with caching comes stale results, comes inconsistent results, comes out of date management of the cache.
Hussein NasserHOST
6:23
actually there is a great video by Dave from he used to be a Microsoft developer he's retired now but he went through how they used to optimize Windows was it 95 or 98 I can't remember that the executable from Windows at night they take the executable and run it and see how the functions are called and then put the functions that are close to each other in the same four kilobyte pages and that's because that's how cpu execute pages right ah thank you train it's okay you don't have to honk so yeah sometimes the train is just like the conductor like to honk for no reason i don't know why this just feels like it there's there's nothing here in this area but anyway so By optimizing that, every memory access gets you one beautiful page and every subsequent calls are almost always in this area.
Hussein NasserHOST
7:22
So you see how precious these calls get.
Hussein NasserHOST
7:25
So back to our life, how we do things is when we execute... a REST call or a GraphQL or any endpoint or a SQL statement, we just assume that, you know what, I'm not going to do that again.
Hussein NasserHOST
7:41
That's slow.
speaker_0HOST
15:42
And what if it fails?
speaker_1HOST
15:43
Let's say the script throws in SQL syntax error.
speaker_1HOST
15:46
The AI reads the error log, realizes the company uses some non-standard database structure, rewrites its own script, and tries again.
speaker_1HOST
15:54
It iterates through the errors in seconds, navigating the proprietary environment until it successfully completes the objective.
Kevin WilliamsHOST
12:33
And in fairness, you know, we're technical people, but I think about all of the care and feeding that I've given Claude code over the last, you know, year.
Kevin WilliamsHOST
12:42
And I'm looking at these outputs and I'm looking at this div and I'm looking at this table and I'm looking at this SQL output.
Kevin WilliamsHOST
12:48
And, how often am I actually involving myself in that decision-making? Like I know enough to be dangerous, but I'm not reading every line of the code.
Kevin WilliamsHOST
12:56
I'm looking for the output.

30 MINS LATER

Matt GrahamGUEST
42:49
There's plenty of other stuff that we can be using AI for right now in your business to help achieve bigger outputs and levers for you.
Kevin WilliamsHOST
42:57
Yeah, yeah, yeah, definitely.
Kevin WilliamsHOST
42:59
But there's also security risk, like, you know, that there is I've joked about the AI plumbing thing in the past, like, I would say that, you know, SQL has come like Snowflake has come a long way.
Kevin WilliamsHOST
43:12
And we used to do all of this stuff where we would be extracting data from a Snowflake database, we'd be pulling it out, we'd be transforming it, and then we'd be shoving it back in.
SamHOST
13:00
What are we talking about here?
EbruHOST
13:01
We're talking Python and SQL for the heavy lifting.
SamHOST
13:04
But
EbruHOST
13:05
also Apache Airflow for pipeline orchestration.

22 MINS LATER

EbruHOST
35:30
Then you graduate to Tier 2, which they call integrated.
SamHOST
35:33
What does Tier 2 look like?
EbruHOST
35:34
That era says where you start bringing in automated event data, you build some automated dashboards to save time, and maybe you have analysts utilizing basic Python or SQL to query historical stats.
SamHOST
35:45
So stepping up the automation.
Brandon PashoraHOST
18:37
So the software is telling you the correct order of operations if you know how to hear it.
Brandon PashoraHOST
18:45
Now, we have data and tables connected by keys at this point, right? So how do we get anything out? well you ask a question and the formal name for that question is a query the most common language for writing one is sql or sql and nobody went and when you're talking about whether it's called sql whether it's called sql no one's going to win that argument so just call it what you want to call it Now I'm not going to teach you SQL in three minutes, but I want you to recognize the shape of it.
Brandon PashoraHOST
19:24
So when you see a query in a support ticket or an error log, you can read it well enough to know what it was trying to do.
Brandon PashoraHOST
19:33
almost and almost every query is built from six pieces you have select which says which fields you want back so like give me the point name and value there's from which says which table to pull from so from the points table example Where filters the row, where, W-H-E-R-E, only where the unit is age U3, right? So this piece does the most work, and it is where performance problems tend to show up.
Christophe BlefariGUEST
2:29
But there isn't any equivalent in data.
Christophe BlefariGUEST
2:33
And what we've seen in the past, like in the data world pre-AI, so like two years ago, before two years ago, something like this, everyone was writing SQL every day.
Christophe BlefariGUEST
2:46
Like when you take like someone in the data team, you were writing like a few SQL query from like five to 50 to 100 a day, something like this, editing SQL queries all day long.
Christophe BlefariGUEST
2:57
And at the beginning we were like, yeah, this is what the world is.
Christophe BlefariGUEST
3:02
People are writing SQL query.
Christophe BlefariGUEST
3:03
We're going to help people write SQL query better, faster, without errors, with autocomplete and so on.
Christophe BlefariGUEST
3:10
But like world shifted super fast when Cloud Code arrived.
Christophe BlefariGUEST
3:16
And what we've seen is people don't even care looking at the data anymore.
Michelle LimGUEST
13:42
Okay, well, let me decide what database we should pick.
Michelle LimGUEST
13:47
Obviously, SQL, like, no SQL is, like, not great.
Michelle LimGUEST
13:50
But I had to make all these, like, really big decisions.
Michelle LimGUEST
13:53
And Warp's backend is still running on, like, the decisions that I made.

212 more episodes mention SQL.

Create an account to see the whole feed, search across every transcript, and follow the entities you care about.

We value your privacy

We use cookies to understand how you use our platform and to improve your experience. Click “Accept All” to consent, or “Decline non-essential” to opt out of non-essential cookies. Read our Privacy Policy.