溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mysql查詢選項實例分析

發(fā)布時間:2022-05-16 11:23:18 來源:億速云 閱讀:146 作者:iii 欄目:大數(shù)據(jù)

這篇“mysql查詢選項實例分析”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“mysql查詢選項實例分析”文章吧。

說明

1、查詢選項,用來對查詢結(jié)果進(jìn)行簡單的數(shù)據(jù)過濾,查詢選項在select關(guān)鍵字之后有兩個互斥。

2、all默認(rèn),表示保留所有記錄(關(guān)鍵字可以不顯示)。

distinct去重,重復(fù)記錄(根據(jù)所選字段構(gòu)成的記錄,而非某一字段)

實例

create table t_6(
id int primary key auto_increment,
    goods_name varchar(50) not null,
    goods_price decimal(10,2) default 0.00,
    goods_color varchar(20),
    goods_weight int unsigned comment '重量,單位克'
)charset utf8;
 
insert into t_6 values(null,'mate10',5499.00,'blue',320),
(null,'mate10',5499.00,'gray',320),
(null,'nokia3301',1299,'black',420);
 
# 考慮所有字段的去重(不含邏輯主鍵)
select distinct goods_name,goods_price,goods_color,goods_weight from t_6;
select goods_name,goods_price,goods_color,goods_weight from t_6; # 保留所有
 
# 不考慮顏色去重
select distinct goods_name,goods_price,goods_weight from t_6;
select all goods_name,goods_price,goods_weight from t_6;

以上就是關(guān)于“mysql查詢選項實例分析”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI