Advertisement
Advertisement
| 01.29.2008 at 02:23PM PST, ID: 23121095 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: |
MyDatabase=> \d customers
Table "public.customers"
Column | Type | Modifiers
----------------+------------------------+-----------------------------------------------------------------
customer_id | integer | not null default nextval('customers_customer_id_seq'::regclass)
telephone1 | character varying(100) | not null default ''::character varying
telephone2 | character varying(100) | default ''::character varying
email | character varying(100) | default ''::character varying
title | character varying(150) | default ''::character varying
street | character varying(50) | not null default ''::character varying
city | character varying(40) | not null default ''::character varying
postal | character varying(30) | not null default ''::character varying
province | character varying(30) | not null default ''::character varying
country | character varying(30) | not null default ''::character varying
ship_number | character varying(10) | default ''::character varying
bill_number | character varying(15) | default ''::character varying
purchase_order | character varying(20) | default ''::character varying
customertype | character varying(50) | default ''::character varying
keep_in_touch | smallint | not null default 0
sendoffers | smallint | default 1
resident | smallint | not null default 0
prefix | character varying(10) | default ''::character varying
firstname | character varying(75) | not null default ''::character varying
lastname | character varying(75) | not null default ''::character varying
english | smallint | default 0
proforma | smallint | default 0
unid | character varying(23) | not null default ''::character varying
Indexes:
"customers_pkey" PRIMARY KEY, btree (customer_id)
MyDatabase=> insert into customers (Telephone1, Telephone2, Email, Title, Street, City, Postal, Province, Country,
MyDatabase(> ship_number, Bill_Number, Purchase_Order, CustomerType, Keep_In_Touch, SendOffers, Resident, Prefix, FirstName,
MyDatabase(> LastName, English, Proforma, UNID) VALUES ('123-123-1212','','','','123 Boob','Montreal','12345','QC',
MyDatabase(> 'Canada','','','','Type',1,1,0,'','Jer','Pascual',0,0,'2008');
ERROR: duplicate key violates unique constraint "customers_pkey"
|