Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: SQL??????????

Re: SQL??????????

From: Oliver Critchley <oliver.critchley_at_no.spam.please>
Date: 1997/11/18
Message-ID: <3471D10A.CCA@no.spam.please>#1/1

sm wrote:
>
> SQL stands for Structured Query Language. It was designed to easily
> manipulate data in Relational databases. At the heart of it, the
> langauge basically comprises of just 4 statements... SELECT, INSERT,
> DELETE and UPDATE. Whereas INSERT, DELETE and UPDATE allow the users
> to insert, delete and update data, SELECT allows users to read data.
> The beauty is that the user does not have to write the logic for how
> to read the data... just has to mention what data he/she wants to read
> and whatever the conditional clause is.
>
> Access and other flat file dbs expect the users write the how logic..
> for e.g., to compute the sum total of col A in table T for all rows
> in which col B is 0, one would have to write code to traverse thru all
> the rows and compute the sum if the condition is true.

It's not often I find myself standing up for MS Access, but in this case I think I ought to point out that Access is an RDBMS too, and has a SQL interface to its database engine. Just try looking at the "SQL" view when you're in query-design mode. Received on Tue Nov 18 1997 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US