I need to find most recent hired employees for example i have table
(我需要找到最近雇用的员工,例如我有桌子)
INPUT
(输入)
------------------------
| name | hire_date |
------------------------
| Michael | 11-JAN-2010|
| Eugene | 20-DEC-2018|
------------------------
Need to add third column with '*' in one line with last hired employeer
(需要与最后雇用的雇员在一行中添加带有“ *”的第三列)
OUTPUT
(输出值)
----------------------------------
| name | hire_date | maxdate |
----------------------------------
| Michael | 11-JAN-2010| |
| Eugene | 20-DEC-2018| * |
----------------------------------
ask by Женя Касьян translate from so