1. 程式人生 > >SQL語句中別名中有括號的情況

SQL語句中別名中有括號的情況

    select Alone as A from table where ……沒有問題

    select Alone as A(bcde) from table where ……有問題

    改為以下語句:

    select Alone as "A(bcde)" from table where……問題解決了