Sunday, August 15, 2010

waka waka lyrics

You're a good soldier
Choosing your battles
Pick yourself up
And dust yourself off
And back in the saddle

You're on the frontline
Everyone's watching
You know it's serious
We're getting closer
This isnt over

The pressure is on
You feel it
But you've got it all
Believe it

When you fall get up
Oh oh...
And if you fall get up
Oh oh...

Tsamina mina
Zangalewa
Cuz this is Africa

Tsamina mina eh eh
Waka Waka eh eh

Tsamina mina zangalewa
Anawa aa
This time for Africa



This is our motto
Your time to shine
Dont wait in line
Y vamos por Todo

People are raising
Their Expectations
Go on and feed them
This is your moment
No hesitations

Today's your day
I feel it
You paved the way
Believe it

If you get down
Get up Oh oh...
When you get down
Get up eh eh...

Tsamina mina zangalewa
Anawa aa
This time for Africa

Tsamina mina eh eh
Waka Waka eh eh

Tsamina mina zangalewa
Anawa aa

Tsamina mina eh eh
Waka Waka eh eh
Tsamina mina zangalewa
This time for Africa

Friday, August 13, 2010

SQL prepartion chapter 2

The SQL SELECT Statement

The SELECT statement is used to select data from a database.
The result is stored in a result table, called the result-set.

SQL SELECT Syntax

SELECT column_name(s)
FROM table_name
and
SELECT * FROM table_name
Note Note: SQL is not case sensitive. SELECT is the same as select.

An SQL SELECT Example

The "Persons" table:
P_Id LastName FirstName Address City
1 Hansen Ola Timoteivn 10 Sandnes
2 Svendson Tove Borgvn 23 Sandnes
3 Pettersen Kari Storgt 20 Stavanger
Now we want to select the content of the columns named "LastName" and "FirstName" from the table above.
We use the following SELECT statement:
SELECT LastName,FirstName FROM Persons
The result-set will look like this:
LastName FirstName
Hansen Ola
Svendson Tove
Pettersen Kari


SELECT * Example

Now we want to select all the columns from the "Persons" table.
We use the following SELECT statement:
SELECT * FROM Persons
Tip: The asterisk (*) is a quick way of selecting all columns!
The result-set will look like this:
P_Id LastName FirstName Address City
1 Hansen Ola Timoteivn 10 Sandnes
2 Svendson Tove Borgvn 23 Sandnes
3 Pettersen Kari Storgt 20 Stavanger

Sunday, August 8, 2010

word a day

fu·ry

–noun, plural -ries.
1.
unrestrained or violent anger, rage, passion, or the like: Thegods unleashed their fury on the offending mortal.
2.
violence; vehemence; fierceness: the fury of a hurricane; afury of creative energy.

food feast during college days



sridhar