SQL语句 打印输出 九九乘法表
通过SQL 语句进行九九乘法表的输出
操作方法
- 01
1、打开SqlServer--新建查询
- 02
2、定义三个变量(行、列、输出字符串) 通过横竖 九行九列 进行循环输出 如图 DECLARE @a smallint, @b smallint, @str varchar(1000)set @a=1while @a<=9begin SET @b=1 SET @str='' WHILE @b<=@a begin SELECT @str=@str+convert(varchar(1),@b)+'*'+convert(varchar(1),@a)+'='+convert(char(2),@a*@b)+space(2) SET @b=@b+1 end PRINT @str SET @a=@a+1END
- 03
3、执行
- 04
4、最后的结果
赞 (0)