Cách lấy dữ liệu từ bảng cơ sở dữ liệu SQL
Bạn có thể lấy dữ liệu ra khỏi bảng bằng cách sử dụngSELECT
chỉ huy.
Nhận tất cả các hàng và cột:
SELECT * FROM people;
age | name
-----+--------
37 | Flavio
8 | RogerGet only the name
column:
SELECT name FROM people;
name
--------
Flavio
RogerCount the items in the table:
SELECT COUNT(*) from people;
count
-------
2You can filter rows in a table adding the WHERE
clause:
SELECT age FROM people WHERE name='Flavio';
age
-----
37The results of a query can be ordered by column value, ascending (the default) or descending, using ORDER BY:
SELECT * FROM people ORDER BY name;
SELECT * FROM people ORDER BY name DESC;
More database tutorials:
- The MongoDB basics tutorial
- How MongoDB is different from a SQL database
- Information systems, data and information
- Data models
- Introduction to the ER Data Model
- The Relational Model
- Relational Algebra
- Relational Databases
- What is a Database? And a DBMS?
- Introduction to SQL
- How to install PostgreSQL on macOS
- Do you always need a database for your app?
- How to install SQLite on macOS
- Introduction to PostgreSQL
- PostgreSQL User Permissions
- How to list all users in PostgreSQL
- How to switch database using PostgreSQL
- How to list all databases using PostgreSQL
- How to list tables in the current database using PostgreSQL
- How to install MySQL on macOS
- Creating a user on MySQL
- PostgreSQL vs MySQL, a comparison
- SQLite User Permissions
- MySQL User Permissions
- SQL, creating a table
- SQL, adding data to a table
- SQL, how to use SELECT
- SQL, Handling empty cells
- SQL, Unique and Primary keys
- SQL, how to update data
- SQL, how to update a table structure
- SQL, how to delete data and tables
- SQL Joins
- SQL Views
- How to insert multiple items at once in a MongoDB collection
- How to remove all items from a MongoDB collection