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

  1. relation example4
  2.  
  3. typedef example4;
  4.  
  5. field composer string length 20;
  6. field piece    string length 20;
  7. field price    money;
  8.  
  9. index ix_c_price on composer, price;
  10. index ix_c_piece on composer, piece;
  11. index ix_piece   on piece;
  12.  
  13. end
  14.  
  15.