“I bought this guide a few days ago to prepare for my interview with Oracle. Many of the questions they asked me were from this guide. I found this book absolutely great!”
Read more comments...
What is the basic form of a SQL statement to read data out of a table?
2,086 Views | (6 votes, avg: 2.5)
SELECT statement
select * from table_name where xyz=”whatever”
The basic form to read data out of table is SELECT * FROM table_name;
An answer:SELECT * FROM table_name WHERE xyz= ‘whatever’;cannot be called basic form because of WHERE clause.
“Select” statement is the answer
select * from tn where condition
Name (required)
Mail (will not be published) (required)
Your Answer
To prove you're a person (not a spam script), type the security text shown in the picture. Click here to regenerate some new text.
SELECT statement
select * from table_name where xyz=”whatever”
The basic form to read data out of table is
SELECT * FROM table_name;
An answer:
SELECT *
FROM table_name
WHERE xyz= ‘whatever’;
cannot be called basic form because of WHERE clause.
“Select” statement is the answer
select * from tn where condition
Leave an Answer/Comment