Categories
sql

SQL:What is sql statement

To retrieve or manipulate data present in tables of a database we issue some commands to the server. They are called sql statements. One of the sql statement is
[sql]SELECT * from titles;[/sql]
In above statement we are calling for all rows in the table to be displayed.