
I want to implement only date not time like that 20 Sep 2011. How can possiple it?

Your question is not clear. Which technology you use? java/.NET/SQl?

Java SimpleDateFormat Example
import java.util.*;
import java.text.*;
class DateExample
{
public static void main(String[] args)
{
Date date=new Date();
SimpleDateFormat sdf=new SimpleDateFormat("d MMM yyyy");
String d=sdf.format(date);
System.out.println(d);
}
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.