去重:除id之外其他字段相同的資料,僅保留一條。
select min(id), data.dialogue_data.content, data.dialogue_data.publish_time, data.dialogue_data.author into data.zzzz
from data.dialogue_data where publish_time > 1562342400 and publish_time < 1562428800 group by content, publish_time, author;
不同:比較兩張表,兩張表是包含關係,如a包含b,得到a中存在b中不存在的資料,即a-b,若部分字段比較,則列出字段即可。
select * from a where a.as not in (select * from b);
postgresql 資料庫基本操作
c dbname 切換資料庫,相當於mysql的use dbname l 列舉資料庫,相當於mysql的show databases dt 列舉表,相當於show tables d tblname 檢視表結構,相當於desc tblname,show columns from tbname 一般性c...
postgresql資料庫常用操作命令及SQL語言
環境ubuntu,安裝了postgresql 截圖命令 shift prtsc可以有十字游標,任選截圖區域 alt prtsc擷取當前活動視窗 prtsc擷取整個螢幕 1postgresql常用操作 1 登入 peng peng virtual machine sudo u postgres psq...
PostgreSQL資料庫安裝及簡單操作
rehl7 centos7 postgresql 11 11 2 rehl7 postgresql 11 11 2 yum install y centos7 postgresql 11 11 2 yum install y2.yum方式安裝資料庫客戶端和服務端 yum install y post...