select into中文翻譯,select into是什么意思,select into發(fā)音、用法及例句
1、select into
select into發(fā)音
英: 美:
select into中文意思翻譯
常見(jiàn)釋義:
選擇進(jìn)入
select into雙語(yǔ)使用場(chǎng)景
1、Ironically, in many cases the program may not care to even check the outcome of the SELECT INTO and the condition handlers work was in vain.───具有諷刺意味的是,在許多情況下,程序甚至可能不在乎檢查SELECTINTO的結果是什么,因此,條件處理程序的工作是徒勞的。
2、Regular SELECT INTO statements can return only one row.───常規的 SELECT INTO 語(yǔ)句只返回一行。
3、The mobile directory catalog condenses the entries from directories that you select into a directory catalog database.───便攜式目錄編目對選入目錄編目數據庫中的目錄的條目進(jìn)行了壓縮。
4、Buyers and sellers self-select into and out of markets based upon their preferences, their willingness-to-pay, and the cost of production.───買(mǎi)賣(mài)雙方根據自己的喜好,自己愿支付的成本,以及產(chǎn)品本身的成本,自由選擇是進(jìn)入還是放棄某個(gè)市場(chǎng)。
5、OPENXML can be used in SELECT and SELECT INTO statements where a source table or view can be specified.───OPENXML可在用于指定源表或源視圖的SELECT和SELECTINTO語(yǔ)句中使用。
6、The SELECT INTO must return a single row or it fails.───SELECT INTO必須返回單個(gè)行,否則就會(huì )失敗。
7、Therefore, any calculations produced by COMPUTE do not appear in the new table created with the SELECT INTO statement.───因而,任何由COMPUTE生成的計算結果都不會(huì )出現在用SELECTINTO語(yǔ)句創(chuàng )建的新表內。
8、IN this scenario, a SELECT INTO statement is processed.───在這個(gè)場(chǎng)景中,要處理一條SELECT into語(yǔ)句。
9、An error occurs if no column name is specified to a column created by a SELECT INTO or CREATE VIEW statement.───如果沒(méi)有為SELECTINTO或CREATEVIEW語(yǔ)句創(chuàng )建的列指定列名,將會(huì )發(fā)生錯誤。
select into相似詞語(yǔ)短語(yǔ)
1、select screen───選擇屏幕
2、select date───選擇日期
3、select───n.(Select)(美、?。┤⒖颂兀ㄈ嗣?;adj.精選的;(地點(diǎn))僅供精英階層專(zhuān)用的;有辨別能力的;n.被挑選者;v.選擇;(在計算機屏幕上)選定;(從菜單中)選取
4、select none───選擇“無(wú)”
5、select level───選擇級別
6、select all───[計]全部選定;全部選擇
7、le select───le選擇
8、select country───選擇國家
9、select submenu───選擇子菜單
2、請教關(guān)于oracle中寫(xiě)存儲過(guò)程時(shí) select into 語(yǔ)句報錯的問(wèn)題
定義一個(gè)塊,塊中說(shuō)明異常情況下如何處理就可以了。
begin
select 字段 into 變量...
exception
when NO_DATA_FOUND then --未找到時(shí)
處理邏輯
when exception_code then --這里的錯誤代碼可以在standard包中找到
處理邏輯
when OTHERS then --default錯誤時(shí)
處理邏輯
end;
錯誤代碼可通過(guò)如下語(yǔ)句獲得:
select * from dba_source where owner='SYS' and name='STANDARD' and type='PACKAGE' and text like ' pragma EXCEPTION%';
版權聲明: 本站僅提供信息存儲空間服務(wù),旨在傳遞更多信息,不擁有所有權,不承擔相關(guān)法律責任,不代表本網(wǎng)贊同其觀(guān)點(diǎn)和對其真實(shí)性負責。如因作品內容、版權和其它問(wèn)題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實(shí),本站將立刻刪除。