The second parameter to SUBSTRING_INDEX() is the delimiter to search for a number of times specified by the 3rd parameter. In my previous example, I used a space, but you have set it to the number 1.
// for the query section:
$sql = mysql_query("SELECT SUBSTRING_INDEX(`body`, ' ', 100) AS small FROM `storys` WHERE id = $id");
$row = mysql_fetch_assoc($sql);
// to output it:
echo $row['small']
(Using mysql_fetch_assoc() helps make the code more specific and readable, as you specify elements by their column/alias names rather than by ambiguous numbers.)