Skip to content

OPTIONALLY

SELECT * FROM Employees
+------------+----------+---------+
| EmployeeId | Name | Position|
+------------+----------+---------+
| 1 | John Doe | Manager |
| 2 | Jane Doe | Analyst |
+------------+----------+---------+

In the above example, we use ‘SELECT * FROM Employees’ SQL statement in the markdown format to display all data from the Employees table. The output is displayed in a tabulated format with EmployeeId, Name, and Position as columns.