#出題問題
SQL腕試し問題が出ていたので、解いてみました。
##僕の解答例
こんな感じで作ってみました。
https://github.com/kyotom/SQL/blob/master/gistfile4.sql
##ポイント
--従業員毎の最新の開始日を出力する(ウィンドウ関数)
, MAX(start_date) over (PARTITION BY employee_id) AS employee_latest_date
Go to list of users who liked
More than 5 years have passed since last update.
#出題問題
SQL腕試し問題が出ていたので、解いてみました。
##僕の解答例
こんな感じで作ってみました。
https://github.com/kyotom/SQL/blob/master/gistfile4.sql
##ポイント
--従業員毎の最新の開始日を出力する(ウィンドウ関数)
, MAX(start_date) over (PARTITION BY employee_id) AS employee_latest_date
Register as a new user and use Qiita more conveniently
Go to list of users who liked