SQLINTRODUCTION TO    SQLWhat is SQL?SQL stands for Structured Query Language
SQL lets you access and manipulate databases
SQL is an ANSI (American National Standards Institute) standard
It is the most commonly used relational database language today.
SQL works with a variety of different fourth-generation (4GL) programming languages, such as Visual Basic.What Can SQL do?SQL can execute queries against a database
SQL can retrieve data from a database
SQL can insert records in a database
SQL can update records in a database
SQL can delete records from a database
SQL can create new databases
SQL can create new tables in a database
SQL can create stored procedures in a database
SQL can create views in a database
SQL can set permissions on tables, procedures, and viewsSQL  is used for:Data Manipulation
Data Definition
Data Administration
All are expressed as an SQL statement or command.SQL REQUIREMENTS:SQL Must be embedded in a programming language, or used with a 4GL like VB2. SQL is a free form language so there is no limit to the the number of words per line or fixed line break.3. Syntax statements, words or phrases are always in lower case; keywords are in uppercase.
Using SQL in Your Web SiteTo build a web site that shows some data from a database, you will need the following:An RDBMS database program (i.e. MS Access, SQL Server, MySQL)
A server-side scripting language, like PHP or ASP

lovely

  • 1.
    SQLINTRODUCTION TO SQLWhat is SQL?SQL stands for Structured Query Language
  • 2.
    SQL lets youaccess and manipulate databases
  • 3.
    SQL is anANSI (American National Standards Institute) standard
  • 4.
    It is themost commonly used relational database language today.
  • 5.
    SQL works witha variety of different fourth-generation (4GL) programming languages, such as Visual Basic.What Can SQL do?SQL can execute queries against a database
  • 6.
    SQL can retrievedata from a database
  • 7.
    SQL can insertrecords in a database
  • 8.
    SQL can updaterecords in a database
  • 9.
    SQL can deleterecords from a database
  • 10.
    SQL can createnew databases
  • 11.
    SQL can createnew tables in a database
  • 12.
    SQL can createstored procedures in a database
  • 13.
    SQL can createviews in a database
  • 14.
    SQL can setpermissions on tables, procedures, and viewsSQL is used for:Data Manipulation
  • 15.
  • 16.
  • 17.
    All are expressedas an SQL statement or command.SQL REQUIREMENTS:SQL Must be embedded in a programming language, or used with a 4GL like VB2. SQL is a free form language so there is no limit to the the number of words per line or fixed line break.3. Syntax statements, words or phrases are always in lower case; keywords are in uppercase.
  • 18.
    Using SQL inYour Web SiteTo build a web site that shows some data from a database, you will need the following:An RDBMS database program (i.e. MS Access, SQL Server, MySQL)
  • 19.
    A server-side scriptinglanguage, like PHP or ASP