連字運算子和別名的使用

2022-07-09 00:42:16 字數 1033 閱讀 8762

sql>

select'1

'||'2

' 輸出結果 from dual;----此處的輸出結果是乙個別名。

想要得到結果job=saleman&lhr

sql>

update scott.emp set job=

'saleman'||

'&'||

'lhr

'where comm=

300;--

---利用字元連線符,這樣才可以避免位址符的作用出現

sql>select empno

||'對應姓名:'||ename as 查詢結果

from scott.emp;

----as 可以省略

sql>

select empno||

'對應姓名:

'||ename 查詢結果 from scott.emp;

'||job "employee details" from scott.emp;----注意此處"employee details"不加雙引號就會報錯。

和 運算子使用解析

運算子用於在預編譯期將巨集引數轉換為字串 例1 include define convers x x int main 預編譯後生成如下 int main 編譯執行結果如下 例2 include define call f,p printf call function s n f f p int s...

和 運算子 使用解析

預處理指令的開始符。運算子用於在預編譯期將巨集引數轉換為字串。舉例說明 include define convers x x int main 將輸出4個字串。運算子用於在預編譯期粘連兩個符號 舉例說明 include define name n name n int main 上面的程式中,int...

運算和運算子

運算 乙個或者乙個以上的資料經過變化得到新值的過程。運算子 用於運算的符號就是運算子 分類 1.算數運算 2.比較運算 關係運算 3.賦值運算 4.邏輯運算 5.位運算 6.成員運算 7.身份運算 1.算數運算 加法運算 減法運算 乘法運算 除法運算 地板除運算 取商運算 取餘運算 求模運算 冪運算...