Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

create table with fields ID, reserved_by,res_date
res_date is datefield like 2010-03-09 00:00:00.000 from
2005 to 2006 any date assume
based on res_date need to slect table and display
based on month (full jan details in database irrespective
of date and year

Answer Posted / sandip

//Show records for a given month
SELECT * FROM table_name (NOLOCK)
WHERE SUBSTRING(res_date, 6, 2) = (numeric value for month.
eg 01 for Jan)


//Show all the records sorted by res_date based on month.
SELECT * FROM table_name (NOLOCK)
ORDER BY SUBSTRING(res_date, 6, 2) ASC

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which are the third-party tools used in sql server and why would you use them?

959


Ms sql server index?

1101


What is single-user mode?

981


What is the difference between ROW_NUMBER and Ranking function in SQL SERVER?

1200


What do you understand by SQL*Net?

1081


What are unicode character string data types in ms sql server?

1340


How to delete duplicate records based on single column from a table?

1103


What are the parts of a function?

982


Who is the owner of a schema in ms sql server?

1116


What are the common performance issues in sql server?

971


Why use stored procedures in sql server?

1057


what is denormalization and when would you go for it? : Sql server database administration

1258


How many databases instances are there in sql server 2000?

1165


What does Master database contains?

1180


What are the components of dbms?

995