c表的部分資料如下:
o表的資料如下:
通過mysql語句:update orderpritb o,china_jw c set o.longitude=c.longitude, o.latitude=c.latitude where o.city like c.city and o.province like c.province,
就能實現將o表中的經緯度依次填寫成功,
例如刪除表opritb的字段cime中的所含的字元「.000」
update opritb set createdtime = replace(cime,'.000','');
update mon_data set mon_data.isqua =null where mon_data.isqua='空值';
多個表聯合查詢,如下,a、s、p三個表,通過一定條件進行聯合,然後檢索出符合where條件的部分資料
"select"
a.accode,a.startdate,a.enddate,p.creatim,s.prcode,s.prname,s.prie,s.quantity,s.subtotal
"from "(a
"left join"
p"on"
a.accode=p.shcode) "left join"
s"on"
p.opcode=s.orcode
"where"
a.pricode='1310167056195'
"and"
a.startdate>='2015-10-27 16:21';
知識積累 MYSQL之索引
檢視索引 show index from tablename 建立復合索引 create unique index indexname on tablename column1,column2,column3 建立復合唯一索引 alter table tablename add unique ind...
mysql知識積累 必知必會
distinct能進行去重,但是這是乙個關鍵字,放在select後面,當多個欄位的時候,意義就變了。比如select distinct name,from user 這個句子的意思是對name欄位和 欄位都相同的行進行去重,而並不是對name進行去重,如果將distinct進行調整,select d...
mysql知識積累 慢慢登記防止忘記
mysql 的整體架構分為如下幾個部分 1 mysql 向外提供的互動介面 connectors 2 管理服務元件和工具元件 management service utilities 3 連線池元件 connection pool 4 sql 介面元件 sql inte ce 5 查詢分析器元件 p...