- Hands-On GUI Programming with C++ and Qt5
- Lee Zhi Eng
- 177字
- 2021-08-27 19:00:18
SELECT
Most of the SQL statements are one-word short and self-explanatory. This statement, for example, is used to select one or more columns from a specific table and to obtain the data from the said columns. Let's check out some of the sample commands that use the SELECT statement.
The following command retrieves all the data of all the columns from the user table:
SELECT * FROM user;
The following command retrieves only the username column from the user table:
SELECT username FROM user;
The following command retrieves the username and password columns from the user table with the condition that the id equals 1:
SELECT username, password FROM user WHERE id = 1;
You can try out these commands by yourself using phpMyAdmin. To do that, click the SQL button located at the top of the menu in phpMyAdmin. After that, you can type the command in the text field below and click Go to execute the query:

https://dev.mysql.com/doc/refman/5.7/en/select.html
- 手機安全和可信應用開發指南:TrustZone與OP-TEE技術詳解
- Python數據分析基礎
- Rust Cookbook
- Linux操作系統基礎案例教程
- Unity 5 for Android Essentials
- Android系統原理及開發要點詳解
- Processing創意編程指南
- Hands-On JavaScript for Python Developers
- C指針原理揭秘:基于底層實現機制
- C++程序設計教程(第2版)
- 基于GPU加速的計算機視覺編程:使用OpenCV和CUDA實時處理復雜圖像數據
- Yii2 By Example
- Java EE項目應用開發
- Java EE實用教程
- Extending Docker