MariaDB查询数据

本文概述

  • 从表中选择所有列
  • 从表中选择单个列
SELECT语句用于从单个或多个表中检索记录。
句法:
SELECT expressionsFROM tables[WHERE conditions];

SELECT语句可以与UNION语句, ORDER BY子句, LIMIT子句, WHERE子句, GROUP BY子句, HAVING子句等一起使用。
SELECT [ ALL | DISTINCT ]expressionsFROM tables[WHERE conditions][GROUP BY expressions][HAVING condition][ORDER BY expression [ ASC | DESC ]];

从表中选择所有列 例:
我们有一个表格” Students” , 其中有一些数据。因此, 从” 学生” 中检索所有记录。
SELECT * FROM Students;

输出
MariaDB查询数据

文章图片
从表中选择单个列 你可以使用SELECT语句从表中检索各个列。它有助于你仅检索需要的那些列。
【MariaDB查询数据】例:
SELECT student_id, student_name, student_addressFROM StudentsWHERE student_id < 5ORDER BY student_id ASC;

输出
MariaDB查询数据

文章图片
在这里, 我们从” students” 表中选择” student_id” 小于5的” student_id” , ” student_name” , ” student_address” , 并根据” student_id” 以升序对记录进行排序。

    推荐阅读