End-to-End SQL & Power BI 2024 | Create a Database | Novice Friendly | Project Analysis

Поділитися
Вставка
  • Опубліковано 19 гру 2024

КОМЕНТАРІ • 37

  • @sharonayodele
    @sharonayodele 2 місяці тому +3

    The added column, you can cal it profit or expenditure = budget*.5 - (salary cost + project cost ). Alternatively,you can multiple the salary by 2- while making no adjustment to the budget.

  • @oriasotiekessinghton3494
    @oriasotiekessinghton3494 2 місяці тому

    I have learnt so much from you and i really appreciate the effort you put into this work

    • @absentdata
      @absentdata  2 місяці тому

      Thank your support. I'm glad you enjoy the content. Please share it with anyone you think it will help

  • @CarlosVolpe-w1n
    @CarlosVolpe-w1n 3 місяці тому

    Great one ! Would love to see more advanced dashboards curated specially for experienced professionals resume selection 😊

  • @amarjithore8848
    @amarjithore8848 2 місяці тому +3

    subscribing with the hope of getting a video on a more difficult level sql project

    • @absentdata
      @absentdata  2 місяці тому

      There other more difficult ones on the channel, check it out

  • @sehrishsaqlain4682
    @sehrishsaqlain4682 Місяць тому

    amayzing video i learn allots of new things

    • @absentdata
      @absentdata  Місяць тому

      Glad you learned from the video

  • @junaidahmed2969
    @junaidahmed2969 2 місяці тому

    amazing website, a lot of thought i seen behind it

  • @htelleurtv7852
    @htelleurtv7852 3 місяці тому

    Merci ce cour est super complet🙏

  • @X4XP11
    @X4XP11 3 місяці тому +1

    Thank you for the video.
    Shouldn't the new calculated column 'Capital' be calculated without multiplying the salary by 2 years since you have already multiplied the 'Budget' by 0.5 (annual budget)?

    • @absentdata
      @absentdata  3 місяці тому +1

      Yeah this is a solid point. I didn't notice this until after the upload

  • @joebeadles112
    @joebeadles112 2 місяці тому

    Alternatively the custom at 1:00:11 column should just be yearly budget since you are splitting a 2 year budget number in half

  • @moseadegoke
    @moseadegoke 2 місяці тому

    Hi guys, am having issues with the CTE
    WITH CTE_Project as (
    SELECT
    project_id,
    project_name,
    project_budget
    from [upcoming projects]
    UNION ALL
    select
    project_id,
    project_name,
    project_budget
    FROM completed_projects)
    SELECT *
    FROM CTE_Project
    I couldn't join this CTE as or is anything wrong with this code above?

    • @shawnsmothers1715
      @shawnsmothers1715 2 місяці тому +1

      this is happening to me too. i keep getting a '(' error. i tried several times and no way around this error. need help

  • @oskarlindberg4869
    @oskarlindberg4869 3 місяці тому

    Love your demos. Would be really cool to se dbt used for transformation in an upcoming vid (i know it's not really related to data analyst role..)

    • @absentdata
      @absentdata  3 місяці тому

      Yeah I know its not exactly a data analyst tool. However I am considering making a series on it.

  • @mrbartuss1
    @mrbartuss1 3 місяці тому +1

    Why using one big table instead of start schema?

    • @absentdata
      @absentdata  3 місяці тому +3

      Its better to let the database do the heavy lifting. A database administrator doesn't not want to replicate the database in Power BI by just bring in all the tables. When requested data access, you are often asked to provide an optimized query. However, its possible to do this in some cases.

  • @sandeepkhawas3367
    @sandeepkhawas3367 Місяць тому

    just wow!

    • @absentdata
      @absentdata  Місяць тому

      That's a great compliment

  • @IfitWasntForThoseKids
    @IfitWasntForThoseKids 3 місяці тому

    great vid!

  • @jaswindersinghbajwa357
    @jaswindersinghbajwa357 Місяць тому

    Just want to know why we are multiplying the budget by 0.5.

  • @pratikjugantmohapatra18
    @pratikjugantmohapatra18 3 місяці тому +2

    Highly aprreciate but lets do some projects usng API fetching beause API is something which is very very essestiala and will make u stand out of crowd .

    • @absentdata
      @absentdata  3 місяці тому +1

      Sounds good like a good idea,

    • @jaswindersinghbajwa357
      @jaswindersinghbajwa357 Місяць тому

      How do I start with this? I know about API stuff, but I haven't used it with Power BI.

  • @zsomborb1065
    @zsomborb1065 2 місяці тому

    When the data is different in the files that you're working with compared to what you upload it's hard to follow.

    • @absentdata
      @absentdata  2 місяці тому

      Which files are different?

  • @RealEchos
    @RealEchos 2 місяці тому +2

    Your sneaky edits to avoid explaining something that stumped you makes it very difficult to follow. Too many errors and mistakes. For someone new and trying to learn, I would say that they are able to complete a partial dashboard that serves no purpose and can't be applied to a portfolio, but might learn a few things.

  • @mahiaslam6738
    @mahiaslam6738 3 місяці тому +1

    much complex projects are appricated

    • @absentdata
      @absentdata  3 місяці тому

      You can check the channel for this. There are others.

  • @OlaobajuOluwajoba-y6i
    @OlaobajuOluwajoba-y6i 2 місяці тому +1

    SELECT
    a.employee_id,
    a.first_name,
    a.last_name,
    a.job_title,
    a.salary,
    d.Department_Name,
    d.Department_Budget,
    pa.project_id,
    p.project_name,
    p.project_budget,
    CASE
    WHEN end_date > CONVERT(DATE, GETDATE()) THEN 'Upcoming'
    ELSE 'Completed'
    END AS status
    FROM employees a
    JOIN departments d ON a.department_id = d.Department_ID
    JOIN project_assignments pa ON a.employee_id = pa.employee_id
    JOIN projects p ON pa.project_id = p.project_id;
    My SQL code