English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

What are the main features, advantages and benefits of the database querying tool Standard Query Language or SQL? In what sorts of setting is it most often used? What are its advantages over other database querying tools??? Please give examples of how SQL may be used in retrieving information from, for example, a database of symptoms of, and approved medicines for, acute malaria.

2006-12-17 02:09:48 · 4 answers · asked by Dalton C 2 in Computers & Internet Programming & Design

4 answers

SQL is used in almost every database system, from Oracle to IBM's DB2. Even MS SQL server and Access. It is a common way for folks to extract data. It certainly beats the old way of coding for each DB system in a different way.

Select disease, symptom, diagnosis, occur_dt
from your_table
where upper(disease) like 'MALARIA'

2006-12-17 02:26:09 · answer #1 · answered by know_it_all_NOT 3 · 0 0

is this a trick question ?

SQL is used to query and manipulate data in a normalized relational database. SQL statements are very easy to write, not case sensitive and the database is secure. a user just gcan't stumble upon a SQL database and view and/or edit data. ythe data is stored the database in a nice safe centralized server somewhere and the client application on the workstation

2006-12-17 02:21:02 · answer #2 · answered by lv_consultant 7 · 0 0

ask youself this:

how likely is it if you are spoonfed answers for your homework, that you will learn the material.
what do you think are the main features of SQL?
what do you think are the main benefits of SQL?
what do you think are its advantages...
why not try to give some thought to your problem and by all means ask such general question but at least make an effort to answer your own homework

2006-12-17 02:26:54 · answer #3 · answered by Mark J 7 · 0 0

OH FRACK - they left you in charge of the keys to the Kryptonite cabinet again, did they?

STRUCTURED query language, not standard.

You are not qualified to ask this question - use excel instead.

You want real sql? swallow this:

select t_leac,t_bpid,
cast(sum(t_amth_1 * (substring (convert (char(2),(((2 + 10 * (cast(t_dbcr as integer)-1))))),1,1)
- cast(t_dbcr as integer))) as money)
from ttfgld106440
where t_leac in ('1381','1398','1480','2410','2412','2460','2465')
and t_catg not in (1,9)
group by t_leac,t_bpid
go

2006-12-17 02:26:30 · answer #4 · answered by Anonymous · 0 2

fedest.com, questions and answers