[Deutsch] 독일어 1일차 미니학습지를 통해 미루고 미루던 본격 독일어를 시작하게 되었다. * Day 01- 알파벳 발음 공부- 아침/점심/저녁/일반 인사- 1가지 표기 Point *알파벳은 영문과 표기가 같았다 + 4개의 letters (ä, ë, ö, ü) * 아침/점심/저녁/일반 인사Gudten Morgan / Gudten Tag / Gudten Abend / Hallo * 1가지 표기 Point독일어는 문장의 첫 글자와 명사의 첫 낱말을 대문자로 표기한다! Study - Language 2024.11.10
1075. Project Employees I * ProblemWrite an SQL query that reports the average experience years of all the employees for each project, rounded to 2 digits.Return the result table in any ordeExplanation: The average experience years for the first project is (3 + 2 + 1) / 3 = 2.00 and for the second project is (3 + 2) / 2 = 2.50 * Solution # Write your MySQL query statement below select a.project_id project_id, .. Study - Problems(IT)/LeetCode - SQL 2024.11.10