Fetch an entire row from the employees table for a specific
employee ID:
Answers were Sorted based on User's Feedback
select * from employees where employee_id='1381';
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / 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 |
How do I run a pl sql procedure in sql developer?
What is pivot table in sql?
what is Difference between Having and Where clause?
What does “select count(1) from tab” result?
Explain how can you save or place your msg in a table?
what are the different functions in sorting an array? : Sql dba
When should I use nosql database?
what are the types of join and explain each? : Sql dba
How much does sql cost?
What is number function in sql?
Why use truncate instead of delete?
Does execute immediate commit?