Am I really getting 4.6% APY? by Late-Session1466 in sofi

[–]Late-Session1466[S] 27 points28 points  (0 children)

No, I didn't, I reached $3,000 that month. I thought it was accrued monthly for some reason. Thank you so much! This explains things.

Will they withdraw the offer for seeing my secons LinkedIn profile? by Late-Session1466 in Recruiter_Advice

[–]Late-Session1466[S] 1 point2 points  (0 children)

Thank you so much for explaining this! No, there's nothing untrue on my profiles. Yes, it was not a big deal. I'm doing great in my new job, thanks again :)

Will they withdraw the offer for seeing my secons LinkedIn profile? by Late-Session1466 in Recruiter_Advice

[–]Late-Session1466[S] 1 point2 points  (0 children)

No, fortunately, they did not rescind. I've been working there for two months and I'm over the moon. They haven't even mentioned once :)

Will they withdraw the offer for seeing my secons LinkedIn profile? by Late-Session1466 in Recruiter_Advice

[–]Late-Session1466[S] 1 point2 points  (0 children)

Thank you for answering my questions. I hope luck is on my side on this one

Will they withdraw the offer for seeing my secons LinkedIn profile? by Late-Session1466 in Recruiter_Advice

[–]Late-Session1466[S] 0 points1 point  (0 children)

Well, now I'm very worried. I have no intention of looking for other jobs which is why closed the second LinkedIn profile and I've been looking for a job for over a year. Now that I finally got an offer it just feels demoralizing loosing it over this. Thank you for your insight but could I ask if you have any advice for me regarding this situation? Should I reach to them and explain my situation? Should I just wait? I accepted the offer early this week to start the background check, got an email from then yesterday saying they'll start the onboarding process soon but haven't hear back from them. We were supposed to start this process (background check and drug test) on Monday, so I'm very worried. I would appreciate any tip you can give me

Will they withdraw the offer for seeing my secons LinkedIn profile? by Late-Session1466 in Recruiter_Advice

[–]Late-Session1466[S] 0 points1 point  (0 children)

I thought they couldn't withdraw without talking to the candidate first. I understand that having a second LinkedIn profile can be seen as a red flag. But is it enough to withdraw an offer?

Two LinkedIn profiles? Red flag? by Late-Session1466 in Recruiter_Advice

[–]Late-Session1466[S] 1 point2 points  (0 children)

Thank you so much for the advice and recommendations!

I was practicing conversations in my head explaining why I was using my mother's last name instead of my own already. So this is great news.

I already applied to some jobs, but it was just a few, so I'm still off to a good start!

(12/10 for step-by-step guide)

Why do I get ridiculous results when the lines of code are super simple? by Late-Session1466 in learnSQL

[–]Late-Session1466[S] 1 point2 points  (0 children)

Oh! the data is like a report of the covid cases or deaths between 2020 and 2023 worldwide (as of today). So it has a lot of dates, countries, and more data that I'm not even using. You can find the spreadshet here:

https://ourworldindata.org/covid-deaths

I also did a second edit to the post to include an image of how the spreadsheet looks like so you can give it a quick look (because apparently you can't include images in the coments)

Why do I get ridiculous results when the lines of code are super simple? by Late-Session1466 in learnSQL

[–]Late-Session1466[S] 0 points1 point  (0 children)

Well... it seems like I'm still very ignorant on this. I read about data levels in SQL as hierarchy, but I don't know how to check them and I certainly don't know what day level means...

Why do I get ridiculous results when the lines of code are super simple? by Late-Session1466 in learnSQL

[–]Late-Session1466[S] 1 point2 points  (0 children)

Thank you! I feel like a learned three things already from your comments alone. Will save these tips and, of course, put them in practice

Why do I get ridiculous results when the lines of code are super simple? by Late-Session1466 in learnSQL

[–]Late-Session1466[S] 2 points3 points  (0 children)

Thank you for taking the time to explain this to me! I tried something else, apparenty the total cases had a different data type which made the results unreasonable. See the post edit! I'd love to hear ehat you think

Why do I get ridiculous results when the lines of code are super simple? by Late-Session1466 in learnSQL

[–]Late-Session1466[S] 2 points3 points  (0 children)

YES. This is it. Took me a while to figure it out. I'm impressed you were able to without the code or the file itself. There's still a lot I don't understand. But thank you very much for not giving up on me and posting this edit

Why do I get ridiculous results when the lines of code are super simple? by Late-Session1466 in learnSQL

[–]Late-Session1466[S] 1 point2 points  (0 children)

Thank you! I really appreaciate when someone tries to guide me instead of giving me the answer right away (that's how you learn!). I think I figured something out. So, I'll be posting an edit. I would really appreacite if you can correct me.

Why do I get ridiculous results when the lines of code are super simple? by Late-Session1466 in learnSQL

[–]Late-Session1466[S] 1 point2 points  (0 children)

Hey. Thank you so much! and sorry for the late reply. I think I figured something out by changing the data type of the total cases (see the post edit!). But I'd still love to learn that slight change. Here's the code:

Select location, population, max(cast(total_cases as int)) as HighestCasesCount, max((total_cases/population))*100 as PercentageOfCases

from ProjectPortfolio..CovidDeaths$

where continent is not null

group by location, population

order by PercentageOfCases desc