Tagged Questions
3
votes
2answers
104 views
What is the nicest way to select the current week in MySQL
At the moment I have something like this...
SELECT SUM(a.PaidSingle) AS PaidSingle,
DATE_FORMAT(a.TimeIn, '%a') AS weekDay
FROM Attendance AS a JOIN MemberDetail AS m ON m.id = a.MemberID
...
2
votes
6answers
299 views
MySQL: Is it possible to 'fill' a SELECT with values without a table?
I need to display the total of 'orders' for each year and month. But for some months there is no data, but I DO want to display that month (with a total value of zero). I could make a helpertable ...
2
votes
3answers
213 views
MySQL Year Type
Why does the MySQL year type limit the range of allowable years between 1901 and 2155?
2
votes
2answers
709 views
Sum values by year with MySQL/PHP
I've got a minor problem with a database admin page that I use to update values and totals in a MySQL database for generating various figures and data for a website.
A bit of background - the ...
1
vote
2answers
159 views
MySQL date query only returns one year, when multiple exist
I'm a part-time designer/developer with a part-time photography business. I've got a database of photos with various bits of metadata attached. I want to query the database and return a list of the ...
0
votes
0answers
27 views
MySQL partition implies adding a column in primary key
I am wondering something with MySQL partitioning.
Suppose I have a table like that (OLTP example database)
CREATE TABLE `orders` (
`order_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`client_id` ...
0
votes
3answers
316 views
Get the year out of timestamp sql
I have a problem extracting the year out of a mysql timestamp field. I managed to get it work with a datetime field using this method:
SELECT id FROM TABLE WHERE YEAR(creation_date) = 2010
CREATE ...
0
votes
1answer
228 views
display array of dates as 12 month view
i work with php/Mysql
i have table with two cols (date , cash) with values like {7/2001:100$, 12/2001:50$ , 1/2002:30$ , 5/2002:90$ , 6/2003:80$,9/2003:20$ } i would like to make cash flow table ...