1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-04-13 20:02:23 +02:00

Update select statement (#6780)

This commit is contained in:
Atharva Warang 2024-08-27 14:00:50 +05:30 committed by GitHub
parent e41c42c866
commit 216783571c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,11 @@
# SELECT statement
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. Heres a basic syntax of a SELECT statement:
'''sql
SELECT * FROM employees;
'''
Learn more from the following resources:
- [@article@SQL_Select](https://www.w3schools.com/sql/sql_select.asp)