I want to get data from a range of selected dates in SQL Server.
This is the SQL query (SQL Server 2005)
SELECT  * FROM  slips WHERE  CONVERT(char,  date_Of_Birth, 101)  BETWEEN ('01/08/2019') AND ('21/08/2019') 
It gives me a results of every record on my database, how do I get selected range? I want only the selected range to show.
 
     
     
     
     
    