Showing posts with label Sql select data or Select Statement. Show all posts
Showing posts with label Sql select data or Select Statement. Show all posts

Sunday, March 6, 2011

sql Select data Or Select statement

Selecting Data

The select statement is used to query the database and retrieve selected data that match the criteria that you specify. Here is the format of a simple select statement:

select "column1"
[,"column2",etc]
from "tablename"
[where "condition"];
[] = optional
The column names that follow the select keyword determine which columns will be returned in the results. You can select as many column names that you'd like, or you can use a "*" to select all columns.

AngularJS Basics - Part 1

                                                                  AngularJS What is AngularJS ·          Framework by googl...