2016-06-14 53 views

回答

0

在蜂巢和MySQL的select聲明有<value/col_name> as <col_alias><value/col_name> <col_alias>提供同樣的輸出as是可選關鍵字。

下面的例子可以更好地澄清:

  • 蜂巢查詢

enter image description here

  • MySQL查詢

enter image description here

在其他數據庫中也可能遵循相同的規則。

0

兩者都是相同的,他們可以用這種方式進行測試:

select * 
from (
    select NULL col1, NULL as col2 
    from test_nulls) tabl 
where col1 is NULL and col2 is NULL; 
相關問題