SQL Basics: Constants
In some SQL statements a numeric, character, or date data value must be expressed in text form. For example, in this INSERT statement, which adds a salesperson to the database: I INSERT INTO SALESREPS (EMPL_NUM, NAME, QUOTA, HIRE_DATE, SALES) VALUES (115, ‘Dennis Irving’, 175000.00, ’21-JUN-90′, 0.00) the value for each column in the newly inserted row [ [ ...]