gpt4 book ai didi

mysql - 打印数字 1 到 100,每行 10 个数字

转载 作者:行者123 更新时间:2023-11-29 01:38:07 28 4
gpt4 key购买 nike

在一个小时前重新打印一个已删除的问题,

if I wanted to print out the numbers 1-100, with 10 numbers to a line in the mysql shell, how would I go about doing that?

最佳答案

社区wiki回答以免收分。随意编辑。

select theAnswer
from
( select @rn:=@rn+1 as rownum,
concat(1+(@rn-1)*10,' ',2+(@rn-1)*10,' ',3+(@rn-1)*10,' ',4+(@rn-1)*10,' ',5+(@rn-1)*10,' ',
6+(@rn-1)*10,' ',7+(@rn-1)*10,' ',8+(@rn-1)*10,' ',9+(@rn-1)*10,' ',10+(@rn-1)*10,' ') as theAnswer
from (select @rn:=0) params1
cross join (select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9 union select 10) params2
) xDerived;

+---------------------------------+
| theAnswer |
+---------------------------------+
| 1 2 3 4 5 6 7 8 9 10 |
| 11 12 13 14 15 16 17 18 19 20 |
| 21 22 23 24 25 26 27 28 29 30 |
| 31 32 33 34 35 36 37 38 39 40 |
| 41 42 43 44 45 46 47 48 49 50 |
| 51 52 53 54 55 56 57 58 59 60 |
| 61 62 63 64 65 66 67 68 69 70 |
| 71 72 73 74 75 76 77 78 79 80 |
| 81 82 83 84 85 86 87 88 89 90 |
| 91 92 93 94 95 96 97 98 99 100 |
+---------------------------------+

from ( )里面的东西是一个派生表,每个派生表都需要一个别名,就是xDerived

@rn 是行号变量。它在 params1 派生表中进行初始化。一排。

params2 是另一个派生表,第 1 到 10 行作为值。

cross join 创建一个 cartesian product 1x10 的(所有排列)产生 10 行,@rn 每行递增。

因为我们只需要一列输出,所以外部包装器只对一列进行最终选择,以避免输出行号列。

如果想在 mysql 中使用 WHILE DO 循环,可以使用存储过程。

关于mysql - 打印数字 1 到 100,每行 10 个数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33863572/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com