










Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
This lecture slide is very easy to understand and very helpful to built a concept about the foundation of computers and Database Design.The key points in these slides are:Standard Computer Language, Access Database, Retrieve Data, Execute Queries, Insert New Records, Delete Records from Database, Definitions and Data Types, Creating Tables, Dropping Table, Order Elements, Aggregates
Typology: Slides
1 / 18
This page cannot be seen from the preview
Don't miss anything!











SQL stands for S tructured Q uery L anguage SQL allows you to access a database SQL is an ANSI standard computer language SQL can execute queries against a database SQL can retrieve data from a database SQL can insert new records in a database SQL can delete records from a database SQL can update records in a database
Insert into “tablename” (first_column, … last_column) values (first_value,…last_value);
Insert into employee (first, last, age, address, city, state) values (‘James’, ‘Tran’, 23, ‘1111 1 st^ street’, ‘San Jose’, ‘California’);
delete from “tablename”
where “columnname”
OPERATOR “value” [and | or “column” OPERATOR “value”];
[ ] = optional
Evaluation of GroupBy with Having
Two tables
a) b)
R(A) UNION ALL S(A)
c)
d)
R(A) EXCEPT ALL S(A)
R(A) INTERSECT S(A)
R S T
T
T