Update select statement (#6780)
parent
e41c42c866
commit
216783571c
1 changed files with 11 additions and 0 deletions
@ -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. Here’s 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) |
Loading…
Reference in new issue