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 |
Explain two virtual tables available at the time of database trigger execution.
What is the difference between sql and mysql?
How run sql*plus commands that are stored in a local file?
Is it possible to create startup or shutdown trigger for on-schema?
Can you create a table with Primary Key not as the clustered index.
What are nested triggers ?
6 Answers Amazon, Appeal Soft, IBM, Infosys, TCS,
Explain autonomous transaction.
What are analytic functions in sql?
write a query find which rows of a table is updated on 2 days before?
What are the sql commands?
What is trigger price?
what does it mean to have quoted_identifier on? What are the implications of having it off? : Sql dba
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)