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


How can we know the number of days between two given dates
using MySQL?

Answers were Sorted based on User's Feedback



How can we know the number of days between two given dates using MySQL?..

Answer / sergii

DATEDIFF(expr1,expr2)

DATEDIFF() returns expr1 – expr2 expressed as a value in
days from one date to the other. expr1 and expr2 are date
or date-and-time expressions. Only the date parts of the
values are used in the calculation.

mysql> SELECT DATEDIFF('1997-12-31 23:59:59','1997-12-30');
-> 1
mysql> SELECT DATEDIFF('1997-11-30 23:59:59','1997-12-31');
-> -31

Is This Answer Correct ?    9 Yes 1 No

How can we know the number of days between two given dates using MySQL?..

Answer / shwetha

There is a operator {not} BETWEEN ,we can use this in where
clause to get in between dates.
ex:
select count(column name)
from table1
where dates BETWEEN '01-jul-04' and '01-jul-05';

Is This Answer Correct ?    4 Yes 4 No

Post New Answer

More MySQL Interview Questions

How can you retrieve a portion of any column value by using a select query?

0 Answers  


What is mysql default port number?

0 Answers  


What is the maximum size of mysql database?

0 Answers  


How can we convert between Unix & MySQL timestamps?

0 Answers  


How can you export the table as an xml file in mysql?

0 Answers  


How do I grant privileges to a user in mysql phpmyadmin?

0 Answers  


How do you rename a procedure in mysql?

0 Answers  


What is DML in MySQL?

1 Answers  


What is the difference between primary key and candidate key?

0 Answers  


What is DDL in MySQL?

1 Answers  


How do I rename a procedure?

0 Answers  


Write a query to select all teams that won either 1, 3, 5 or 7 games.

0 Answers  


Categories