Fetch an entire row from the employees table for a specific
employee ID:
Answer Posted / suresh ku patra
DECLARE
l_employee employees%ROWTYPE;
BEGIN
SELECT *
INTO l_employee
FROM employees
WHERE employee_id = 138;
DBMS_OUTPUT.put_line (
l_employee.last_name);
END;
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is type and rowtype in pl sql?
how can we destroy the cookie? : Sql dba
Is sql port 1433 encrypted?
What is dml statement?
what is the maximum length of a table name, database name, and fieldname in mysql? : Sql dba
how to include character strings in sql statements? : Sql dba
How do I count duplicates in sql?
What is a sql schema used for?
What does sql stand for?
Are there any features that are decommissioned in 11g that are not present in 11g?
how is exception handling handled in mysql? : Sql dba
What is sql engine in oracle?
What is nvarchar in sql?
mention if it is possible to import data directly from t-sql commands without using sql server integration services? If yes, what are the commands? : Transact sql
What is the default isolation level in sql server? : Transact sql