Update Select Statement Based On Contributing Guidelines

- Re-write topic title 
- Fix SQL code formatting
- Better naming
pull/6881/head
Sarkis Kovlekjian 3 months ago committed by GitHub
parent 54a731aaa5
commit 9b2cb7eade
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      src/data/roadmaps/sql/content/select@rmqXH29n1oXtZ8tvmcRFn.md

@ -1,10 +1,10 @@
# SELECT statement
# SELECT
The SELECT statement in SQL is used to retrieve data from a database. It allows you to specify the columns you want to fetch from a particular table or a combination of tables. Here’s a basic syntax of a SELECT statement:
'''sql
SELECT * FROM employees;
'''
```sql
SELECT * FROM employees_table;
```
Learn more from the following resources:

Loading…
Cancel
Save