Thanks a lot for your help. I solved the problem like this;
function arabunu ()
{
global $wpdb;
$sorgu= "AND $wpdb->posts.post_status='publish'
AND $wpdb->posts.post_type='post'
AND $wpdb->posts.post_title LIKE '".$_SESSION["harf"]."%'";
return $sorgu;
}
add_filter('posts_where', 'arabunu');