Processing Data via PL/SQL
https://www.udemy.com/course/plsql-by-example/learn/lecture/3169110#overview
Reading data from database
DECLARE
customerId number := 10;
customerName varchar2(50);
customerAddress varchar2(50);
BEGIN
SELECT first_name, country INTO customerName, customerAddress
FROM customer
WHERE customer_id := customerId;
END;
%TYPE
DECLARE
customerId customer.customer_id%type := 10;
customerName customer.first_name%type;
customerAddress customer.country%type;
-- 이렇게 해두면 customer의 country 타입이 변하는 경우에도
BEGIN
SELECT first_name, country INTO customerName, customerAddress
FROM customer
WHERE customer_id := customerId;
END;
Author And Source
이 문제에 관하여(Processing Data via PL/SQL), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@woobuntu/Processing-Data-via-PLSQL
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
DECLARE
customerId number := 10;
customerName varchar2(50);
customerAddress varchar2(50);
BEGIN
SELECT first_name, country INTO customerName, customerAddress
FROM customer
WHERE customer_id := customerId;
END;
DECLARE
customerId customer.customer_id%type := 10;
customerName customer.first_name%type;
customerAddress customer.country%type;
-- 이렇게 해두면 customer의 country 타입이 변하는 경우에도
BEGIN
SELECT first_name, country INTO customerName, customerAddress
FROM customer
WHERE customer_id := customerId;
END;
Author And Source
이 문제에 관하여(Processing Data via PL/SQL), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@woobuntu/Processing-Data-via-PLSQL저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)