|    
			
				08/04/2003, 17:49
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: diciembre-2002 Ubicación: Chapinlandia :-D 
						Mensajes: 725
					 Antigüedad: 22 años, 10 meses Puntos: 11 |  | 
  |  intenta con SET DATEFORMAT DMY
 Declare @dFecha as Char(10)
 Declare @dFecha_F as Char(10)
 
 select @dFecha = '28/01/2003', @dFecha_F ='31/11/2003'
 
 select * from noticias
 where fecha between Cast(@dFecha as Datetime) and cast(@dFecha_F as datetime)
 
 
 o si no quieres declarar variables
 Set DATEFORMAT DMY
 select * from noticias
 where fecha between Cast('20/01/2003' as datetime) and cast('28/11/2003' as datetime)
     |