Jump to content

[SOLVED] sql query for date


pixeltrace

Recommended Posts

guys,

 

i need help, i have a field in my database

 

date_posted (date) 0000-00-00

 

what should be in my query if i wanted just to get the value of the day?

 

let say

 

			<?
		$uSql = "SELECT date_posted(i just wanted to get the day) FROM dates";
		$uResult = mysql_query($uSql, $connection);
		if(!$uResult){
		echo 'no data found';
		}else{
		while($uRow = mysql_fetch_array($uResult)){
			?>

 

whats the correct query for this?

thanks!

Link to comment
https://forums.phpfreaks.com/topic/39586-solved-sql-query-for-date/
Share on other sites

guys,

 

i need help, i have a field in my database

 

date_posted (date) 0000-00-00

 

what should be in my query if i wanted just to get the value of the day?

 

let say

 

			<?
		$uSql = "SELECT date_posted(i just wanted to get the day) FROM dates";
		$uResult = mysql_query($uSql, $connection);
		if(!$uResult){
		echo 'no data found';
		}else{
		while($uRow = mysql_fetch_array($uResult)){
			?>

 

whats the correct query for this?

thanks!

 

try this:

 

$query = "SELECT DATE_FORMAT(access.date_posted, '%d')As formatteddate1 
                               
        		 FROM access where icnumber='000000-00-1234' ";

Change ur table name where i put access.

Then acho it like this:

 

echo "<td>" . $row['formatteddate1'] . "</td></font>";

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.