# Draw The Triangle 1

[Question Link](https://www.hackerrank.com/challenges/draw-the-triangle-1/problem?isFullScreen=false)

*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)*.

```sql
SET @i = 21;
SELECT 
    REPEAT('* ', @i := @i-1) 
FROM information_schema.tables;
```
