Reputation: 431
i have fromdate and todate ..How will i get data that falls in this range ??
Upvotes: 1
Views: 572
Reputation: 55467
SELECT * FROM tbl where date_column BETWEEN fromDate and toDate
Upvotes: 4