Let's say if we have this bit of DTD code:
<!ELEMENT Student(Name,ID,Birthday)>
and this will enforce it such that ID can only come after Name, and Birthday after ID.
Is there a way to make it such that the children of "Student" can be of any order, but must also appear exactly once? I've looked everywhere and can't find a way to do this..
Thanks.
<!ELEMENT Student(Name,ID,Birthday)>
and this will enforce it such that ID can only come after Name, and Birthday after ID.
Is there a way to make it such that the children of "Student" can be of any order, but must also appear exactly once? I've looked everywhere and can't find a way to do this..
Thanks.
