sql coding challenges:初学者对SQL编码的挑战 源码
初学者对SQL编码的挑战 对面号码 您的任务是返回给定数字的反数。 例子: number = 1 -> res = -1 number = 14 -> res = -14 number = -34 -> res = 34 SELECT /* your query given number */ AS res FROM opposite; 解决方案SELECT - number AS res FROM opposite; 角度总和 在n边简单多边形中找到内角的总和(以度为单位)。 计算n > 2 n边的多边形的内角和为(n − 2) × 180°的公式。 例子: n = 3 -> res = 180 n = 4 -> res = 360 SELECT /* your query given n */ AS res FROM angle; 解决方案SELECT (n - 2 ) *
文件列表
sql-coding-challenges-master.zip
(预估有个3文件)
sql-coding-challenges-master
images
sql-logo.png
5KB
README.md
13KB
.gitignore
231B
暂无评论