Quoted String

The following examples show quoted strings as expressions:
SELECT 'The first name is ', fname FROM customer;

INSERT INTO manufact VALUES ('SPS', 'SuperSport');

UPDATE cust_calls SET res_dtime = '2007-1-1 10:45' 
   WHERE customer_num = 120 AND call_code = 'B';

For more information, see Quoted String.