Tagged Questions
3
votes
1answer
533 views
How to optimize mysql date_format() for speed in where clause?
I'm trying to optimize relatively big mysql (myisam) table with 220,000 rows. The table itself is not so big - about 23.5MB in size. So, what's the real problem? - i got query like this:
SELECT * ...
2
votes
4answers
68 views
MySQL Group By Dates Between
Is there a way to group records that fall between two dates?
For example, my table has records that look like this:
rid stamp uid
25 2005-07-05 14:10:29 25
1175 ...
2
votes
4answers
147 views
Return null for date_format when input is null in mysql
I'm doing something like this:
SELECT date_format(mydate, '%d/%m/%Y') FROM xyz;
When mydate is NULL, date_format returns 00/00/0000. This is correct, but how can I make it so that it returns NULL ...
1
vote
2answers
275 views
MySQL Subquery Count Using DATE_FORMAT alias
I've been banging my head against the wall for the past hours trying to get this single query to work but having no success.
I have a single table called viewer_log.
Each row is a pageview with a ...
1
vote
5answers
124 views
SQL Select Query with single field as formatted and remaining fields as wildcard
I'm trying to fetch records from a table in MySQL 5.5 (Community Server) which has 22 fields in total, the first field is of type DATETIME, and I want that field formatted with DATE_FORMAT() method, ...
1
vote
2answers
565 views
php/mysql - date_format and the time portion
Apologies if this has already been answered many times, but I was unable to find the answer and I was flummoxed.
I have a mysql query which seemingly outputs the result I want when I run it in the ...
0
votes
2answers
57 views
MySQL: is it possible to format UNIXTIME within a result table?
everyone. I am brand new to SQL and I am using it within a Drupal instalation. I would like to know if it is possible to format the results I get (in UNIXTIME) into a DATE TIME format (human-readable, ...
0
votes
2answers
71 views
date_format PHP using a mySQL call
I am having trouble formating the dates that are being returned from my mySQL database.
Here is the code that I am trying to use:
<?php
function get_gold_time()
{
$goldquery = ...
0
votes
2answers
281 views
How to convert Date in String to Sql date?
I have a date with String format "09-06-2011". I need to compare it with another date in java.sql.Date format "2011-06-30 00:00:00". How can I convert a String date to a sql date ?
0
votes
3answers
295 views
Mysql query : date_format and sprintf()
I want to use sprintf() along with date_format in a MySQL query.
Here is query:
mysql_select_db($database_exdb, $expdb);
$query_eventeditrs = sprintf("SELECT eventid, groupid, title, ...
0
votes
1answer
99 views
mysql date-format returns null
I have the following SQL query. It returns NULL for the 'invoice_date'.
SELECT * , fk_uid AS userId, fk_ivid AS invoice_uid, (
SELECT company
FROM tbl_users
WHERE pk_uid = userId
) AS ...
0
votes
2answers
95 views
MySQL Date_Format based on today's date and another column?
I am aware of the MySQL Date_Format function but am looking to achieve the following:
I have on column with a day date in 2 digit format (01-30). I am trying to update another date formatted field ...
0
votes
4answers
2k views
MySQL/PHP update query with dates not updating
Bit of a strange problem here...
I've got an update query that isn't working, and I can't for the life of me work out why!
My table has two three fields - 'id' (int, auto increment), 'date' (date), ...
0
votes
4answers
8k views
I need to change the date format using php
Hi I have looked at a question already posted about this and tried to adapt my code to do a simlar thing. Basicly I have a field in my mysql database that has the date in this format yyyy-dd-mm i need ...