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 |
what is bdb (berkeleydb)? : Sql dba
Which type of cursor is used to execute the dml statement?
What jobs use sql?
What is a dynamic query?
explain commit and rollback in mysql : sql dba
How to Execute a Package in PL/SQL.?
What operators deal with null?
What are all the different normalizations?
how do you control the max size of a heap table? : Sql dba
Define sql delete statement.
How do u count no of rows in a table?
What is mutating sql table?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)