Hey guys I'm making a database in Enterprise manager
I'm trying to create some tables but need to create a compound key any ideas how to do this because I'm not too sure
code:
Create table tblhelp (
date datetime not null,
helpid varchar(3) not null,
helplocation varchar(10) not null,
random int,
spacefiller varchar(18),
)
date, helpid, and helplocation all need to be a compound key for the tables to work properly. (Although this isn't really my table because I'd just confuse myself if I used the real thing at the moment.)
Any ideas guys