首頁 > 軟體

關於mysql中string和number的轉換問題

2022-06-13 22:00:26

mysql中string和number的轉換

今天無意中發現一個很奇怪的現象,在寫sql語句的時候,想篩選列值為空字串的記錄,結果把列值為0的記錄也一起篩選出來了

總結原因如下

當非同型別比較,等號兩邊分別為number和string之一時候,mysql會把string型別和number型別進行轉換:

(1)數值型字串

如''、'string'、'abc'等,會轉換成0

eg:

select '' = 0 from dual;   ---結果:1
select 'a' = 0 from dual;   ---結果:1

(2)number和string拼接字串

如'123string'、'0123string'等,會取頭部型別進行轉換

eg:

select '123abc' = 0 from dual;   ---結果:0
select '123abc' = 123 from dual;   ---結果:1
select '0123abc' = 123 from dual;   ---結果:1
select '123abc' + '23def' from dual;   ---結果:146

(3)string和number拼接字串

如'string123'、'string0123'等,會取頭部型別進行轉換

eg:

select 'abc123' = 0 from dual;   ---結果:1
select 'abc123' = 123 from dual;   ---結果:0
select 'abc123' + 'def45' from dual;   ---結果:0

(4)數值型字串則會轉換成相應的number

如'123'->123、'023'->23等

eg:

select '123' = 0 from dual;   ---結果:0
select '123' = 123 from dual;   ---結果:1
select '0123' = 123 from dual;   ---結果:1

(5)number則直接轉換成對應的string

eg:

select 123 = '123' from dual;   ---結果:1

所以針對我遇到的問題,mysql把''當成字串處理,轉換成了0,0=0,所以把列值為0的記錄也一併篩選了出來

+號的處理方式同理:

如果+號兩邊型別不一致,則把string轉換成number處理

select '0string' + 0 = 'string' from dual;   ---結果:1   '0string' + 0 -> 0 + 0 = 0,0和'string'進行比較
select 'string' = 'string' + 0 from dual;   ---結果:1   'string' + 0 -> 0 + 0 = 0,'string'和0進行比較
select 'string' + 0 = 'string' + 0 from dual;   ---結果:1   'string' + 0 -> 0 + 0 ,0和0進行比較
select 'string' + 0 = 'string' + 1 from dual;   ---結果:0   'string' + 0 -> 0 + 0 ,'string' + 1 -> 0 + 1,0和1進行比較

參考連結:http://stackoverflow.com/questions/22080382/mysql-why-comparing-a-string-to-0-gives-true

附贈mysql檔案說明:https://dev.mysql.com/doc/refman/5.7/en/type-conversion.html

mysql中hex、varchar、number相互轉換

hex(‘20')= 14
select HEX(20) from DUAL – result: 14

然後這串數位就能變為16進位制字串,只需要加上0x的字首!

  • UNHEX(‘14’) – 每對十六進位制數位轉化為一個字元。
  • UNHEX(‘14’),對應 SI, 該字元無法正確輸出

但是ORDER BY UNHEX(‘14’) 是可以的。

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com