MySQL as和distinct關鍵字

2021-10-22 11:48:21 字數 850 閱讀 5766

2.distinct關鍵字

select id as 序號, name as 名字, gender as 性別 from students;

輸入命令後顯示:

如果是單錶查詢 可以省略表名

select id, name, gender from students;
表名.欄位名

select students.id,students.name,students.gender from students;
可以通過 as 給表起別名

select s.id,s.name,s.gender from students as s;
distinct可以去除重複資料行。

select

distinct 列1,.

..from 表名;

例: 查詢班級中學生的性別

select name, gender from students;
– 看到了很多重複資料 想要對其中重複資料行進行去重操作可以使用 distinct

select

distinct name, gender from students;

天巡收購移動APP開發公司Distinction

據悉,布達佩斯辦公室將成為天巡主要的移動應用開發中心,現有distinction團隊將繼續在布達佩斯辦公室工作。同時,天巡新增創意團隊也將加入,並促進天巡全球網點的移動端發展。distinction聯合創始人兼ceo b lint orosz表示 四年前我們創立distinction,我們的目標是鼓...

和 區別和聯絡, 和 區別和聯絡

和 區別和聯絡,和 區別和聯絡,實際專案中,什麼情況用哪種?首先,和 的聯絡 共同點 和 都可以用作 邏輯與 運算子,都是雙目運算子。具體要看使用時的具體條件來決定。無論使用哪種運算子,對最終的運算結果都沒有影響。情況1 當上述的運算元是boolean型別變數時,和 都可以用作邏輯與運算子。情況2 ...

rpx和樣式和class和flex

5 style 靜態的樣式統一寫到 class 中。style 接收動態的樣式,在執行時會進行解析,請盡量避免將靜態的樣式寫進 style 中,以免影響渲染速度。例 6 class 用於指定樣式規則,其屬性值是樣式規則中類選擇器名 樣式類名 的集合,樣式類名不需要帶上.樣式類名之間用空格分隔。關於f...