WEEK 7: WEB APPLICATION DEVELOPMENT (Database & SQL, Database integration, Redirecting Page)
Server side script (MySQL)
1. SQL Data Manipulation Language (DML)
- SELECT
- UPDATE
- DELETE
- INSERT INTO
2. SQL Data Definition Language( DDL)
- CREATE TABLE
- ALTER TABLE
- DROP TABLE
- CREATE INDEX
- DROP INDEX
Basic select query
SELECT * FROM tablename
SELECT AuthorID, lastName FROM Authors;
DATABASE INTEGRATION
Advantage of using database to store web data
- faster access
- better concurrent access
- easier change to data script
- increased security
a
No comments:
Post a Comment