In: Computer Science
1. ANSWER :
GIVENTHAT :
Differences between Oracle and Access are as follows :
First SQL statement can be :
CREATE TABLE persson(
id NUMERIC(3),
personName VARCHAR(50),
age NUMERIC(2),
address VARCHAR(100)
);
SQL query :
SELECT * FROM persson;
This is the select query. This query is used to retrieve all the rows from the table.
This can be useful when someone wants to see the details of the entire table at once and in a structured format and make certain decisions according to the data available in the table.