May I know why this SQL statement doesn't work ?

UPDATE USERBASE
SET USERNAME = ? , PASSWORD = ? , REQUIRED_PLACE = ?
WHERE USERNAME = ? , PASSWORD = ? , REQUIRED_PLACE = ?

The Schema states that username, password and required_place are all
primary key.

ALTER TABLE PUBLIC.USERBASE ADD CONSTRAINT PUBLIC.USERBASE_PK PRIMARY
KEY(USERNAME, PASSWORD, REQUIRED_PLACE);

I would like the above to execute. How should I allow all fields to be
editable ?

Is it possible to obtain and make use of some sort of in-built system
row id if the above is not possible ?

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to h2-datab...@googlegroups.com.
To unsubscribe from this group, send email to 
h2-database+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to