Download IT360 12 week Exam Review Sheet 1. PHP

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Microsoft Access wikipedia , lookup

Oracle Database wikipedia , lookup

Concurrency control wikipedia , lookup

Entity–attribute–value model wikipedia , lookup

Extensible Storage Engine wikipedia , lookup

Relational algebra wikipedia , lookup

Database wikipedia , lookup

Ingres (database) wikipedia , lookup

Microsoft Jet Database Engine wikipedia , lookup

Open Database Connectivity wikipedia , lookup

Clusterpoint wikipedia , lookup

Microsoft SQL Server wikipedia , lookup

Join (SQL) wikipedia , lookup

Database model wikipedia , lookup

SQL wikipedia , lookup

Relational model wikipedia , lookup

PL/SQL wikipedia , lookup

Transcript
IT360 12 week Exam Review Sheet
1. PHP
a. variables, constants, arrays (numerically indexed arrays and associative
arrays)
b. control statements (if, for, foreach, while, …)
c. files
d. functions
e. objects/classes, inheritance
f. Work with MySQL using PHP
 Connect to a database
 Query
 process results
 close connection
g. Session variables
2. Stored Procedures
a. A stored procedure is a program that performs some common action on
database data and is stored in the database.
b. Advantages of stored procedures
c. How to write a stored procedure
3. Triggers
a.
b.
c.
d.
e.
A trigger is a stored program that is attached to a table or view.
Type of triggers
Uses for triggers
Writing a trigger
Differences between triggers and stored procedures
4. SQL VIEWS
a.
b.
c.
d.
e.
f.
SQL View is a virtual table that is constructed from other tables or views.
Syntax: CREATE VIEW viewname AS viewquery
Order By clause cannot be used in the Create View query.
A view can be queried as if it is a table.
Uses for views
Updating views
5. More SQL SELECT
a. using JOIN .. ON syntax
b. left join, right join
c. Sub-queries :
 Non-correlated sub-queries
 Correlated sub-queries