TAILIEUCHUNG - PL/SQL User's Guide and Reference 10g Release phần 2

Tham khảo tài liệu 'pl/sql user's guide and reference 10g release phần 2', công nghệ thông tin, cơ sở dữ liệu phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Lexical Units t2 TIMESTAMP WITH TIME ZONE TIMESTAMP 1997-01-31 09 26 02 00 -- Three years and two months -- For greater precision we would use the day-to-second interval 11 INTERVAL YEAR TO MONTH INTERVAL 3-2 YEAR TO MONTH -- Five days four hours three minutes two and 1 100 seconds 12 INTERVAL DAY TO SECOND INTERVAL 5 04 03 DAY TO SECOND You can also specify whether a given interval value is YEAR TO MONTH or DAY TO SECOND. For example current_timestamp - current_timestamp produces a value of type INTERVAL DAY TO SECOND by default. You can specify the type of the interval using the formats interval_expression DAY TO SECOND interval_expression YEAR TO MONTH For details on the syntax for the date and time types see the Oracle Database SQL Reference. For examples of performing date time arithmetic see Oracle Database Application Developer s Guide - Fundamentals. Comments The PL SQL compiler ignores comments but you should not. Adding comments to your program promotes readability and aids understanding. Generally you use comments to describe the purpose and use of each code segment. PL SQL supports two comment styles single-line and multi-line. Single-Line Comments Single-line comments begin with a double hyphen -- anywhere on a line and extend to the end of the line. A few examples follow DECLARE howmany NUMBER BEGIN -- begin processing SELECT count INTO howmany FROM user_objects WHERE object_type TABLE -- Check number of tables howmany howmany 2 -- Compute some other value END Notice that comments can appear within a statement at the end of a line. While testing or debugging a program you might want to disable a line of code. The following example shows how you can comment-out the line -- DELETE FROM employees WHERE comm_pct IS NULL Multi-line Comments Multi-line comments begin with a slash-asterisk end with an asterisk-slash and can span multiple lines. Some examples follow DECLARE some_condition BOOLEAN pi NUMBER radius NUMBER 15 area NUMBER .

TÀI LIỆU LIÊN QUAN
TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.