home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / CONTRIB / MBASE / MBASE51.TAR / mbase51 / examples / example1.s < prev    next >
Encoding:
Text File  |  1993-09-04  |  284 b   |  10 lines

  1. relation example1
  2.  
  3. field lastname  type char * 30;  # Someone's last name
  4. field firstname type char * 30;  # And their first name
  5. field number    type phone;      # And, of course, their phone number
  6.  
  7. index ix_name   on lastname, firstname;   # Sorted by lastname, then by first
  8.  
  9. end
  10.