Is SQL really this easy :gucci:?

MR. SNIFLES

**** YOU THUNDAAAAAAAAAAH
Supporter
Joined
May 2, 2012
Messages
20,486
Reputation
6,189
Daps
82,235
Reppin
THUNDER BUDDIES
I've been working with SQL daily for a few years now. It is simple enough to wrap your head around, but I think that one of the hardest parts about querying databases is that just because your query returns results, doesn't mean that the results are correct. There is an additional layer of QA that is necessary for most tasks that catch a lot of incorrect assumptions, bad data, and the likes. Remember that good data is the results of a lot of other processes going smoothly since inception and that is rarely the case.

This isn't to say that you aren't well on your way to becoming a skilled SQL user, but more to say that database work can be a very humbling act.

I'M NOT A CODER BUT I WAS TAUGHT THAT THE ONLY THING WORSE THAN NO DATA IS BAD DATA THAT APPEARS TO BE GOOD.
 

Dr. Acula

Hail Hydra
Supporter
Joined
Jul 26, 2012
Messages
25,705
Reputation
8,571
Daps
136,297
SQL syntax wise is easy but gets harder as you deal with more complex databases. Especially keys if there are many dimensions to your data.
The difficulty of using it is not syntax but logic of how to tie various elements together.
 

Secure Da Bag

Veteran
Joined
Dec 20, 2017
Messages
39,881
Reputation
20,309
Daps
125,871
SQL syntax wise is easy but gets harder as you get into more complicated as you deal with more complex databases.
The difficulty of using it is not syntax but logic of how to tie various elements together.

Fair assessment.
 
  • Dap
Reactions: F K

daboywonder2002

Superstar
Joined
May 20, 2012
Messages
12,871
Reputation
975
Daps
27,035
Reppin
minnesota
One common thing I see with all these clinical analyst and application analyst ibs is that they require SQL. Could I teach myself or do most jobs really expect u to know the ins and outs? I don't know SQL. I'm watching a youtube video on it know but not sure that it's enough to actually put on my resume.
 

greenvale

Superstar
Supporter
Joined
Aug 1, 2017
Messages
5,997
Reputation
1,920
Daps
23,323
Reppin
Delaware
One common thing I see with all these clinical analyst and application analyst ibs is that they require SQL. Could I teach myself or do most jobs really expect u to know the ins and outs? I don't know SQL. I'm watching a youtube video on it know but not sure that it's enough to actually put on my resume.
You can teach yourself. Use something like SQLZoo as a free supplement to your YouTube resume.

SQL skills can vary but at the bare minimum you should be able to easily write joins, basic grouping and aggregation. Pivots too.
 

MrNoFlyZone

The Original 2nd Coming
Joined
Jun 8, 2012
Messages
309
Reputation
20
Daps
858
One common thing I see with all these clinical analyst and application analyst ibs is that they require SQL. Could I teach myself or do most jobs really expect u to know the ins and outs? I don't know SQL. I'm watching a youtube video on it know but not sure that it's enough to actually put on my resume.

I started with this

SQL: Data Reporting and Analysis
 
  • Dap
Reactions: F K

F K

All Star
Joined
Jan 13, 2017
Messages
3,204
Reputation
480
Daps
10,121
:russ: This shyt cracks me up every time I come back in here. :mjcry: So much work to normalize tables and it can be so easy to get them de normalized. especially on big dbs.
I'm sitting there working on a feature, I'm like hmmm. I need a new column, add the column, write the code.. run it by my boss in the 1 on 1 and he's like. oh we already had that data in this other table, just use that :sadbron:
 

Secure Da Bag

Veteran
Joined
Dec 20, 2017
Messages
39,881
Reputation
20,309
Daps
125,871
One thing, I still struggle on is window functions. I think I just haven't had enough opportunities or scenarios to use them fully.
 
Top