實(shí)際上,IFNULL(表達(dá)式1, 表達(dá)式2) 的默認(rèn)返回類型是這兩個(gè)表達(dá)式中更為通用的類型,順序?yàn)?STRING、REAL 或 INTEGER。可以通過(guò)以下示例來(lái)理解 –
示例
mysql> Create table testing Select IFNULL(100,'testing123'); Query OK, 1 row affected (0.18 sec) Records: 1 Duplicates: 0 Warnings: 0 mysql> Select * from testing568; +-----------------------+ | IFNULL(100,'testing') | +-----------------------+ | 100 | +-----------------------+ 1 row in set (0.00 sec) mysql> Describe testing568; +-----------------------+------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------------------+------------+------+-----+---------+-------+ | IFNULL(100,'testing') | varchar(7) | NO | | | | +-----------------------+------------+------+-----+---------+-------+ 1 row in set (0.03 sec)
登錄后復(fù)制
從上面的結(jié)果集中可以清楚地看出,在本例中,列的類型是 varchar(7)。也就是說(shuō),它是字符串類型。
以上就是MySQL IFNULL() 控制流運(yùn)算符的默認(rèn)返回類型是什么?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!