The following SQL statement selects all customers with a City of "Paris" or "London":
Example
SELECT * FROM CustomersWHERE City IN ('Paris','London');
Try...
The following SQL statement selects all customers with a City starting with the letter "s":
Example
SELECT * FROM CustomersWHERE City LIKE 's%';
Try...
It is possible to delete all rows in a table without deleting the table. This means that the table structure, attributes, and indexes will be intact:
DELETE FROM table_name;orDELETE * FROM table_name;
Note: Be...
Assume we wish to delete the customer "Alfreds Futterkiste" from the "Customers" table.
We use the following SQL statement:
Example
DELETE FROM CustomersWHERE CustomerName='Alfreds...
In an update statement, it is the WHERE clause that determines how many records which will be updated.
The WHERE clause: WHERE Country='Mexico' will...
To update more than one column, use a comma as seperator.
Assume we wish to update the customer "Alfreds Futterkiste" with a new contact person and city.
We...
The following SQL statement selects all customers from the "Customers" table, sorted ascending by the "Country" and descending by the "CustomerName"...
The following SQL statement selects all customers from the "Customers" table, sorted by the "Country" and the "CustomerName" column:
Example
SELECT * FROM CustomersORDER BY Country,...
The following SQL statement selects all customers from the "Customers" table, sorted DESCENDING by the "Country" column:
Example
SELECT * FROM CustomersORDER BY Country DESC;
Try...
The following SQL statement selects all customers from the "Customers" table, sorted by the "Country" column:
Example
SELECT * FROM CustomersORDER BY Country;
Try...
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...
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...
The following SQL statement selects all the customers from the country "Mexico", in the "Customers" table:
Example
SELECT * FROM CustomersWHERE Country='Mexico';
Try...
The following SQL statement selects only the distinct values from the "City" columns from the "Customers" table:
Example
SELECT DISTINCT City FROM Customers;
Try...
The following SQL statement selects the "CustomerName" and "City" columns from the "Customers" table:
Example
SELECT CustomerName,City FROM Customers;
Try...
To ignore just a part of a statement, use the /* */ comment.
Any text between /* and */ will be ignored.
Example
Ignore part of a line:
SELECT CustomerName, /*City,*/ Country FROM Customers;
Try...
Multi-line comments start with /* and end with */.
Any text between /* and */ will be ignored.
Example
A multi-line comment as an explanation:
/*Select...
<input type="radio"> defines a radio button.
Radio buttons let a user select ONE of a limited number of choices:
Example
<form>
<input type="radio" name="gender" value="male" checked> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other
</form>
Try...