­
12/10/16 - Yaar No Technology

Search the Whole World Here.,.,

SQL - ORDER BY Example

SQL - ORDER BY Example

The following SQL statement selects all customers from the "Customers" table, sorted by the "Country" column: Example SELECT * FROM CustomersORDER BY Country; Try...
SQL - Combining AND & OR

SQL - Combining AND & OR

You can also combine AND and OR (use parenthesis to form complex expressions). The following SQL statement selects all customers from the country...
SQL - OR Operator Example

SQL - OR Operator Example

The following SQL statement selects all customers from the city "Berlin" OR  "München", in the "Customers" table:  Example SELECT * FROM CustomersWHERE City='Berlin'OR City='München'; Try...
SQL - AND Operator Example

SQL - AND Operator Example

The following SQL statement selects all customers from the country "Germany" AND the city "Berlin", in the "Customers" table: Example SELECT * FROM CustomersWHERE Country='Germany'AND City='Berlin'; Try...

Ads by Google