If we give select * from emp then oracle response by displaying all the records with all its column. This is used to view the full sturcture of the table with all its records with field name as its column title.
RE: When we give SELECT * FROM EMP; How does oracle re...
when we give select * from emp; The server search for the database schema called Emp here. If there exists any schema called emp then it checks its all attributes then match this attribute with the arguments in after the select statement. If everthing is allright then it will display all the rows with all its attributes.