this post was submitted on 25 Nov 2025
349 points (99.4% liked)
Programmer Humor
27673 readers
632 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
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I've seen a many-to-many relationship written as a column of CSV ids.
Also same ppl used "ID" instead of "id" (sometimes Id even) which made ORMs cry hard
Half our ids are called 'number' sooo. Also our entire in-database translation system relies on guids that are not foreign keys. The only reason our ORM doesn't flip on that is because it's completely custom made with semi-autogenerated stored procedures resolving that translation in-database (using yet another SP).
We are at 2696 stored procedures right now, most of those are simple CRUD (can't do straight selects on our tables because of the translations, so every select with different parameters is a SP)