SQL Tutorial

Submitted by admin on

One of the problems that I encounter when I started programming is on how to save record to a database.

I feel I need to share the knowledge that I gained within 10 years of my experience so that other programmer who would like to learn will benefit on this tutorial.

SQL stands for Structured Query Language and is the standard for accessing and or manipulating a database.

This tutorial will use the ISO standard so that you can apply the code that I will provided here.

SQL DELETE Statement

Submitted by admin on

When you insert data into your table you may need to update it sometimes. Not so often we inserted or updated a wrong data. That’s why there is a Delete statement.

To delete some record from the database tables we use the SQL Delete statement, the Delete Statement deletes the data row from the table which meets the condition specified in the where clause.

The delete command has the following syntax:

How to Create Reports using Crystal Reports

Submitted by admin on

This tutorial will teach you on how to create reports in Visual Basic .NET 2008 using Crystal Reports. This is a step by step guide on how I create the report on "Weekly Sales Report using Crystal Reports".

This guide is not intended for advance user. So please don't react if you find a basic explanation on this tutorial.

This assumes that you have already attached the database that is included in the zip file of "Weekly Sales Report ".

SQL UPDATE Statement

Submitted by admin on

When you insert record to your table there are some cases that you need to modify the data. Or you may want to update it to the latest record.

The SQL update is there to help us modify the existing values of the table, the SQL update statement used the same column name as insert statement and the new value that you want to placed and the table name to update the data successfully.

The syntax of SQL update statement is as follows:

SQL intro

Submitted by admin on
SQL is an acronym for Structure Query Language, it is a language which helps program to communicate with the databases, regardless of the type of the database, the SQL syntax is almost the same except for extended commands which certain DBMS support or do not support or simply have its own versions or dialects.