Let say here is my query
SELECT id as people_ID FROM user
UNION
SELECT id as people_ID FROM client
What I want is give every row a unique ID that will increment by adding new column as below:
+------+-------------+
| ID | people_ID |
+------+-------------+
| 1 | Alex |
+------+-------------+
| 2 | Kenny |
+------+-------------+
| 3 | David |
+------+-------------+
| 4 | Ashley |
+------+-------------+
Is it possible to accomplish it?