笔试面试 MySQL中查询university重复的id最大的记录,比如’北京大学’重复2次(id=1和3两条记录),只查询出id=3的记录。如下SQL不符合预期的是()? user_profile中全部记录如下: +—-+———–+——–+——+————–+———-+ | id | device_id | gender | age | university | province | +—-+———–+——–+——+————–+———-+ | 1 | 2138 | male | 21 | 北京大学 | BeiJing | | 2 | 3214 | male | NULL | 复旦大学 | Shanghai | | 3 | 6543 | female | 20 | 北京大学 | BeiJing | | 4 | 2315 | female | 23 | 浙江大学 | ZheJiang | | 5 | 5432 | male | 25 | 山东大学 | Shandong | +—-+———–+——–+——+————–+———-+ 5 rows in set (0.00 sec)
笔试面试 请问以下JS代码最终输出的结果是() const arr = [117]; arr.ops = 935; arr.__proto__.func = 130; for(let item in arr) { if (item === 0) { console.log(undefined); break; } console.log(arr[item]); }; for(let item of arr) { console.log(item); };