this post was submitted on 11 Feb 2025
1100 points (98.8% liked)

Programmer Humor

20460 readers
2715 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 

See the post on BlueSky: https://bsky.app/profile/provisionalidea.bsky.social/post/3lhujtm2qkc2i

According to many comments, the US government DOES use SQL, and Musk is not understanding much what's going on.

you are viewing a single comment's thread
view the rest of the comments
[–] sexual_tomato@lemmy.dbzer0.com 2 points 3 hours ago

Storage data structures. Database tables are designed for fast read/write. Excel is designed for fast simultaneous parallel computation.

To get a sense of what this looks like, you can read more about their data structures; Databases typically store data in what's called a "B Tree" and spreadsheets typically store as a format that can be easily converted into a "Directed Acyclic Graph" (although Excel lets you turn off the "acyclic" part if you allow circular references).

Although, with Excel specifically, there's probably not much difference since it has some database functionality now.