Hello coders, In this post, you will learn how to solve the Draw The Triangle 2 Hacker Rank Solution. This problem is a part of the SQL Hacker Rank series.

Draw The Triangle 2 Hacker Rank Solution
Problem
P(R) represents a pattern drawn by Julia in R rows. The following pattern represents P(5):
*
* *
* * *
* * * *
* * * * *
Write a query to print the pattern P(20).
Draw The Triangle 2 – Hacker Rank Solution
set @row := 0; select repeat('* ', @row := @row + 1) from information_schema.tables where @row < 20
Disclaimer: The above Problem (Draw The Triangle 2) generated by Hackerrank but the Solution is Provided by Chase2Learn. This tutorial is only for Educational and Learning purposes.