SQL
Example of SQL Query:
mysql> SELECT id, username, role from users;
+----+----------+------+
| id | username | role |
+----+----------+------+
| 1 | Admin | 1 |
| 2 | Support | 3 |
| 3 | Anne | 5 |
| 5 | Joe | 5 |
+----+----------+------+
4 rows in set (0.00 sec)
Last updated