sql怎麼不重複記錄,sql 怎麼查詢不重複資料

2023-05-17 19:50:01 字數 988 閱讀 4473

1樓:匿名使用者

alter table table_a

add purchase_price number--a表沒有purchase_price列 首先給表a加一列。

insert into table_a (purchase_price)

select purchase_price from

select table_ from table_a,table_b

where table_ =table_

and table_ =table_

and table_ =table_

and table_ table_

加完列 插入資料。

用加條件的方式確認抽取出來的資料對應唯一的a表中的插入位置。

2樓:80後華仔

不好直接插入a表一列並有數值,不過可以重新建立乙個表c,比a表多個purchase_price列,建立c表的格式:create table c select 語句。

sql 怎麼查詢不重複資料

3樓:矽谷少年

折騰了大半天,搞定。

方法:select max(欄位1) as 欄位1,欄位2,max(欄位3) as 欄位3,max(欄位4) as 欄位4 from 表1 group by 欄位2

這樣能以 欄位2 為關鍵字,篩選所有不重複記錄。

我的表有200多個字段,就這麼搞定了。

結果相當於 excel 以單個欄位為關鍵字去重複。

4樓:網友

select distinct 查詢欄位名from 表名。

where 查詢條件。

其中distinct是去除重複內容的。

5樓:匿名使用者

查詢的時候多查乙個sum

用group by來分組。

最後去掉sum列就行了。

sql查詢消除重複記錄

delete from t where id not in select id from select address,min id id from t group by address t2 把 t改成你的表名 這句可以實現,不過用的是最笨的辦法 delete from tablename whe...

同表中,如何寫SQL語句查詢某段重複的記錄

select t1.a from table t1 where exists select 1 from table t2 where t1.c t2.c and t1.a t2.a 乙個表中有重複記錄如何用sql語句查詢出來?不知道你什麼資料庫.如果資料庫支援 row number 函式的話,倒是...

sql怎麼宣告變數,sql 如何宣告變數

宣告區域性變數語法 declare variable name datatype其中 variable name為區域性變數的名稱,datatype為資料型別。給區域性變數賦值有兩種方法 1 set variable name value2 select variable name value兩者的...