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...

There is table like Events...in that name ,startdate
,enddate,location are the column names
write a stored Procedure for this table to get events by
Months "GetEventsByMonths"

Answer Posted / newbie

CREATE PROCEDURE GetEventsByMonths
@MONTH VARCHAR(15)
AS

SET NOCOUNT ON

SELECT name,DATENAME(MONTH,startdate) AS Startmonth
FROM Events
WHERE DATENAME(MONTH,startdate) = @MONTH
GROUP BY name,DATENAME(MONTH,startdate)

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain timestamp datatype?

1022


When I run the sql server 2000 setup, it just hangs. What do I do?

1129


how would you improve etl (extract, transform, load) throughput?

1078


What is stretch database in sql server?

1122


What is linked report?

137


Write a query for primary key constraint with identity key word?

1084


Mention the differences between local and global temporary tables.

1113


Can you explain what are commit and rollback in sql?

986


What is view in sql?

955


Why I am getting this error when renaming a database in ms sql server?

1111


what changed between the previous version of sql server and the current version? : Sql server database administration

1056


What is a schema in ms sql server 2005?

1027


Where views are stored in sql server?

1037


How to resolve the orphan use problem? : sql server security

1076


Can you import Microsoft Excel data to SSRS?

135