I have a table called 'computers' as shown below:
Code:
holyghost=# \d computers
Table "public.computers"
Column | Type | Modifiers
--------+-----------------------+--------------------------------------------------------
id | integer | not null default nextval('computers_id_seq'::regclass)
make | character varying(20) | not null
model | character varying(40) | not null
owner | character varying(40) | not null
price | numeric(7,2) | not null
Indexes:
"computers_pkey" PRIMARY KEY, btree (id)
Is it possible in SQL to specify that the 1st character of the input value in the field 'make' be capital and not lower case? I'm trying to prevent users from entering data like dell, DELL, DeLl, DEll but only 'Dell'. I don't know if this is even possible considering they're all legitimate values for VARCHAR.