user415772
user415772

Reputation: 431

selecting data between a certain date range

i have fromdate and todate ..How will i get data that falls in this range ??

Upvotes: 1

Views: 572

Answers (1)

dcp
dcp

Reputation: 55467

SELECT * FROM tbl where date_column BETWEEN fromDate and toDate

Upvotes: 4

Related Questions