I'm stack with this problem with some time now.
Here is my problem.
CREATE TABLE category
(
catdb_id bigserial NOT NULL,
catdb_name character varying,
catdb_remarks character varying,
CONSTRAINT catdb_id_pk PRIMARY KEY (catdb_id)
)
INSERT INTO category(catdb_ name) VALUES('DyCharl eS')
---successfully inserted
INSERT INTO category(catdb_ name) VALUES('dycharl es')
---successfully inserted
How can i make this two values which i inserted above to be equal? Any solution. Thank you.
Here is my problem.
CREATE TABLE category
(
catdb_id bigserial NOT NULL,
catdb_name character varying,
catdb_remarks character varying,
CONSTRAINT catdb_id_pk PRIMARY KEY (catdb_id)
)
INSERT INTO category(catdb_ name) VALUES('DyCharl eS')
---successfully inserted
INSERT INTO category(catdb_ name) VALUES('dycharl es')
---successfully inserted
How can i make this two values which i inserted above to be equal? Any solution. Thank you.
Comment