DATA ANALYSIS in MySQL | INTERVIEW SCENARIOS

Поделиться
HTML-код
  • Опубликовано: 25 окт 2024

Комментарии • 3

  • @houseoftechconcepts
    @houseoftechconcepts  11 месяцев назад +1

    To download the data file used in this video... Checkout the following link and Download the file from AVG over Window in MySQL section.......
    houseoftechconcepts.com/pages/mySqlStudyMaterial.html

  • @vishnuchalla11
    @vishnuchalla11 11 месяцев назад

    For the 1st question, to get average salary by department.....we can also use Group by also right ? Like this
    SELECT department_name,Avg(salary)
    FROM employee_data
    GROUP BY department_name

    • @houseoftechconcepts
      @houseoftechconcepts  10 месяцев назад +1

      Yes.. There are many other alternatives to solve this question...