Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.20 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. CREATE TABLE `data_index` (
  2.   `id` int(11) NOT NULL,
  3.   `num` smallint(6) NOT NULL,
  4.   `word` varchar(33) DEFAULT NULL,
  5.   PRIMARY KEY (`id`,`num`),
  6.  
  7.   KEY `word` (`word`,`id`),
  8.  
  9.   KEY `id` (`id`,`word`)
  10. );