Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

How do I count rows in sql query?

1040


How do I edit a trigger in sql developer?

1053


What is the use of count (*) in sql?

1118


What does t sql mean?

1002


what are the 'mysql' command line arguments? : Sql dba

1192


What is an index? What are the types of indexes? How many clustered indexes can be created on a table?

1131


What is schema in sql?

999


How do you create an update query?

1024


What do you mean by query optimization?

1050


Is sql injection illegal?

1082


What is benefit of creating memory optimized table?

1032


How to disable a trigger name update_salary?

1315


How run sql*plus commands that are stored in a local file?

1115


Does truncate need commit?

1005


What is rowid in sql?

1055