Multiplication Table in SQL Server This query gives the multiplication table from 1 to 10. DECLARE @A INT, @B INT, @C INT, @D VARCHAR (100) SELECT @A=1 PRINT ' MULTIPLICATION TABLE 1-10' /****************************************/ /* Created By : Loganathan V */ /* Created On: 20-Sep-2010, Monday */ /* Purpose : Multiplication Table */ /* How to : RUN THE QUERY */ /****************************************/ WHILE (@A<=10) BEGIN ...
Sharing work experience and knowledge in Computer programming. If you have any questions in Microsoft technology stack, JavaScript frameworks/platforms, Cloud Programming, Containerization and etc... Please write in comments. We'll try to provide the solutions as soon as possible.