1
23
Guess the intent (aussie.zone)
submitted 2 weeks ago* (last edited 2 weeks ago) by [email protected] to c/[email protected]

I am one of the developers on a very small team and have just found the following query

I would love to hear your ideas for what you think was being attempted here!

SELECT ... FROM client WHERE CAST(ABS(SIN(clientId)) AS BIT) = 0

2
12
submitted 3 weeks ago* (last edited 3 weeks ago) by [email protected] to c/[email protected]

I found this SQL style guide which looks good. I'm not a pro at SQL but it looks good to me. I mean, you use the style guide your boss wants you to use, or what all others use, but what if you could choose?

3
27
submitted 3 weeks ago by [email protected] to c/[email protected]

TL;DR?

PRAGMA journal_mode = WAL;
PRAGMA busy_timeout = 5000;
PRAGMA synchronous = NORMAL;
PRAGMA cache_size = 1000000000;
PRAGMA foreign_keys = true;
PRAGMA temp_store = memory ;

4
13
submitted 1 month ago by [email protected] to c/[email protected]
5
4
submitted 2 months ago by [email protected] to c/[email protected]
6
23
submitted 2 months ago by [email protected] to c/[email protected]

Hello! Let me first clarify, this is for a personal project, based on an idea I always use to learn all kinds of things: personal finance tracking.

The DB model I typically use looks something like this:

Initially, I made the decision to separate incomes, expenses and transfers into separate tables, which makes sense to me, according to the way I learned DB normalization.

But I was wondering if there is any benefit in somehow mixing the expense and income tables (since they are almost identical, and any code around these is always almost identical), or even all 3 (expense, income and transfer). Maybe it is more convenient to have the data modeled like this this for an API, but for BI or analytics, a different format would be more convenient? How would such format look like? Or maybe this would be better for BI and analytics, but for an API it's more convenient to have something different?

A while ago at a previous job, an experienced software architect once suggested, for a transactional system, to separate the transactional DB from a historical DB, and continuously migrate the data differences through ETL's. I have always thought that idea is pretty interesting, so I wonder if it makes sense to try in my little personal project.

If it was you, how would you model personal finance tracking? Is there something you think I may be missing, or that I should look into for DB modeling?

(Note: I intentionally do not track loans / investments, or at least I have not tried to integrate it for the sake of simplicity, and I have no interest in trying YET.)

7
13
submitted 3 months ago by [email protected] to c/[email protected]

Is there a programming language specifically designed for interacting with SQL databases that avoids the need for Object-Relational Mappers (ORMs) to solve impedance mismatch from the start?

If such a language exists, would it be a viable alternative to PHP or Go for a web backend project?

8
2
submitted 3 months ago by [email protected] to c/[email protected]

cross-posted from: https://programming.dev/post/10749238

cross-posted from: https://programming.dev/post/10707322

cross-posted from: https://programming.dev/post/10707319

In this article, we want to share our experience with fellow developers and offer insights using real-life examples on how to identify and optimize slow SQL queries, especially when working with relational database management systems like PostgreSQL, MySQL, MSSQL, Oracle, etc.

9
3
submitted 4 months ago by [email protected] to c/[email protected]

cross-posted from: https://programming.dev/post/10707319

In this article, we want to share our experience with fellow developers and offer insights using real-life examples on how to identify and optimize slow SQL queries, especially when working with relational database management systems like PostgreSQL, MySQL, MSSQL, Oracle, etc.

10
15
SQL for the Weary (gvwilson.github.io)
submitted 5 months ago by [email protected] to c/[email protected]

intended audience

  • Rachel has a master’s degree in cell biology and now works in a research hospital doing cell assays.
  • She learned a bit of R in an undergrad biostatistics course and has been through the Carpentries lesson on the Unix shell.
  • Rachel is thinking about becoming a data scientist and would like to understand how data is stored and managed.
  • Her work schedule is unpredictable and highly variable, so she needs to be able to learn a bit at a time.

prerequisites

  • basic Unix command line: cd, ls, * wildcard
  • basic tabular data analysis: filtering rows, aggregating within groups

learning outcomes

  • Explain the difference between a database and a database manager.
  • Write SQL to select, filter, sort, group, and aggregate data.
  • Define tables and insert, update, and delete records.
  • Describe different types of join and write queries that use them to combine data.
  • Use windowing functions to operate on adjacent rows.
  • Explain what transactions are and write queries that roll back when constraints are violated.
  • Explain what triggers are and write SQL to create them.
  • Manipulate JSON data using SQL.
  • Interact with a database using Python directly, from a Jupyter notebook, and via an ORM.
11
13
Learning SQL (self.sql)
submitted 8 months ago* (last edited 8 months ago) by sleepingoddish to c/[email protected]

I’ve started to take an intro SQL class but I want to find more places to practice. Do any of you have recommendations for sites that I can use to practice creating queries based on pieces of information someone is looking for?

Any other advice to give to a brand new SQL learner?

Thanks in advance for any guidance.

Edit: Thanks a ton for the responses, I really appreciate it. I’ve bookmarked these pages and started to go through these sites.

12
8
submitted 9 months ago by [email protected] to c/[email protected]
13
17
Upsert in SQL (antonz.org)
submitted 9 months ago by [email protected] to c/[email protected]
14
5
submitted 11 months ago by [email protected] to c/[email protected]

Looks like @[email protected] is looking for reviews on their latest optimizations to the Lemmy backend. Figured folks here might be interested in taking a look.

15
11
submitted 11 months ago* (last edited 11 months ago) by [email protected] to c/[email protected]

A relatively simple but common application of time series done with PG.

16
4
submitted 1 year ago by [email protected] to c/[email protected]
17
1
submitted 1 year ago by [email protected] to c/[email protected]
18
2
submitted 1 year ago by [email protected] to c/[email protected]
19
2
Joins 13 Ways (justinjaffray.com)
submitted 1 year ago by [email protected] to c/[email protected]
20
1
submitted 1 year ago by [email protected] to c/[email protected]

cross-posted from: https://programming.dev/post/252619

Works with Postgresql, MySql, and SQLite natively.

Extends confirmed support for DuckDB, ClickHouse, BigQuery, and Snowflake via the vdsql plugin.

21
1
submitted 1 year ago by [email protected] to c/[email protected]
22
2
SQL Murder Mystery (mystery.knightlab.com)
submitted 1 year ago by [email protected] to c/[email protected]

Can you find out whodunnit?

23
1
submitted 1 year ago by [email protected] to c/[email protected]
24
1
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]

SQL

451 readers
1 users here now

Related Fediverse communities:

Icon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 1 year ago
MODERATORS