Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

2011-10-05 COLLECTION

2025-02-22 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Http://www.itpub.net/thread-1499223-1-1.html

First floor

Which PLSQL block displays the following three lines of numbers after execution?

0

one

two

A

DECLARE TYPE numbers_t IS TABLE OF NUMBER; l_numbers numbers_t: = numbers_t (); BEGIN DBMS_OUTPUT.put_line (l_numbers.COUNT); l_numbers.EXTEND (); l_numbers (1): = 100; DBMS_OUTPUT.put_line (l_numbers.COUNT); l_numbers.EXTEND (); DBMS_OUTPUT.put_line (l_numbers.COUNT); END;/0 12

B

DECLARE TYPE numbers_t IS TABLE OF NUMBER; l_numbers numbers_t: = numbers_t (); BEGIN DBMS_OUTPUT.put_line (l_numbers.COUNT); l_numbers.EXTEND (2); l_numbers (1): = 100; DBMS_OUTPUT.put_line (l_numbers.COUNT); l_numbers (2): = 100; DBMS_OUTPUT.put_line (l_numbers.COUNT); END;/0 22

C

DECLARE TYPE numbers_t IS TABLE OF NUMBER; l_numbers numbers_t: = numbers_t (); BEGIN DBMS_OUTPUT.put_line (l_numbers.COUNT); l_numbers.EXTEND (2); l_numbers (1): = 100; l_numbers.DELETE (1); DBMS_OUTPUT.put_line (l_numbers.COUNT); l_numbers (2): = 100; DBMS_OUTPUT.put_line (l_numbers.COUNT); END;/0 11

D

DECLARE TYPE numbers_t IS TABLE OF NUMBER; l_numbers numbers_t: = numbers_t (); BEGIN DBMS_OUTPUT.put_line (l_numbers.COUNT); l_numbers.EXTEND (2); l_numbers (1): = 100; l_numbers.DELETE (1); DBMS_OUTPUT.put_line (l_numbers.COUNT); l_numbers (1): = 200; l_numbers (2): = 100; DBMS_OUTPUT.put_line (l_numbers.COUNT) END;/0 12

Make up the knowledge points.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report