About 280 results
Open links in new tab
  1. SQL NULL Values - IS NULL and IS NOT NULL - W3Schools

    What is a NULL Value? A field with a NULL value is a field with no value. If a field in a table is optional, it is possible to insert a new record or update a record without adding a value to this field. Then, the field will be saved with a NULL value.

  2. SQL ISNULL(), NVL(), IFNULL() and COALESCE() Functions

    The SQL Server ISNULL() function lets you return an alternative value when an expression is NULL: SELECT ProductName, UnitPrice * (UnitsInStock + ISNULL(UnitsOnOrder, 0)) FROM Products;

  3. MySQL NULL Values - IS NULL and IS NOT NULL - W3Schools

    The IS NOT NULL Operator. The IS NOT NULL operator is used to test for non-empty values (NOT NULL values). The following SQL lists all customers with a value in the "Address" field:

  4. SQL CASE Expression - W3Schools

    If there is no ELSE part and no conditions are true, it returns NULL. CASE Syntax

  5. MySQL NOT NULL Constraint - W3Schools

    The NOT NULL constraint enforces a column to NOT accept NULL values. This enforces a field to always contain a value, which means that you cannot insert a new record, or update a record without adding a value to this field.

  6. SQL COUNT() Function - W3Schools

    Here we use the COUNT() function and the GROUP BY clause, to return the number of records for each category in the Products table: Example SELECT COUNT(*) AS [Number of records], CategoryID

  7. SQL Tutorial - W3Schools

    SQL is a standard language for storing, manipulating and retrieving data in databases. Our SQL tutorial will teach you how to use SQL in: MySQL, SQL Server, MS Access, Oracle, Sybase, Informix, Postgres, and other database systems.

  8. SQL Tryit Editor v1.6 - W3Schools

    SQL Statement: SELECT CustomerName, ContactName, Address FROM Customers WHERE Address IS NOT NULL; Edit the SQL Statement, and click "Run SQL" to see the result.

  9. SQL WHERE Clause - W3Schools

    The SQL WHERE Clause. The WHERE clause is used to filter records. It is used to extract only those records that fulfill a specified condition.

  10. SQL Server CAST() Function - W3Schools

    Aug 25, 2017 · W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

Refresh