Guest User

Untitled

a guest
May 24th, 2013
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. CREATE TABLE `s` (
  2. `form` varchar(255) DEFAULT NULL,
  3. `freq` int(11) NOT NULL DEFAULT '0',
  4. PRIMARY KEY (`form`)
  5. ) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
  6.  
  7. SELECT form FROM s LIKE "foo%" ORDER BY freq DESC LIMIT 30;
Advertisement
Add Comment
Please, Sign In to add comment