第四天mysql學習筆記

一、單表查詢 1、查詢所有記錄select from student; 2、查詢指定字段select s_name from student; 例子指定s_name字段顯示。 3、查詢指定條件select s_name from student where s_id>3;這例子是id大於3查詢結果。 4、查詢指定字段別名select s_name as 學生姓名 from student;如圖所示
相關文章
相關標籤/搜索