一.数值函数 知识点1 SUM 求总和 SELECT breakfast,sum(price) FROM my_foods GROUP BY breakfast ORDER BY SUM(price)DESC GROUP BY 列名 ----将列进行分组,数据相同的为同一组,sum(price)输出每组的总金额! 注意:输出的列一定要是被分组了的! 知识点2 AVG 求平均值 SELECT breakfast,avg(price) FROM my_foods GROUP BY breakf…
函数类型 Function Type 为函数定义类型 Define types for functions 我们可以给每个参数添加类型之后再为函数本身添加返回值类型. TypeScript能够根据返回语句自动推断出返回值类型,因此我们通常省略它. We can add a type to each parameter and then a return value type to the function itself. TypeScript can automatically infer th…
//指定参数类型 function add(x:number,y:number){ console.log("x:"+x); // reutrn(x+y); } //指定函数类型 function add0(x:number,y:number):string{ // return((x+y).toString());//1 return((x+y)+"");//2 均可 } //匿名函数 let aa = function(x:number,y:string):st…