Answers for "oracle select query"

SQL
0

oracle select

SELECT expressions
FROM tables
[WHERE conditions];
Posted by: Guest on February-24-2021
0

SELECT INTO Oracle

DECLARE
  r_customer customers%ROWTYPE;
BEGIN
  -- get the information of the customer 100
  SELECT * INTO r_customer
  FROM customers
  WHERE customer_id = 100;
  -- show the customer info
  dbms_output.put_line( r_customer.name || ', website: ' || r_customer.website );
END;
Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on January-15-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language