Tagged Questions
1
vote
1answer
36 views
Get the mode values of a column
I have a table (sample below) which contains results from a phone vote
Number Voted
97867 Dog
97868 Cat
97869 Dog
97870 Dog
97871 Cat
97872 Donkey
I query the data using
$stmt = ...
0
votes
1answer
33 views
How to ignore prefix on certain models? CakePHP
I have to read data from a table called sys_sbu which is in the same database as my app. However, I have set tr_ to be the prefix of all my tables. When I tried to use $useTable = 'sys_sbu' on my ...
0
votes
1answer
56 views
An attempt to update a NOT NULL var char field sets the field to an empty string rather than failing. Is this correct behaviour
I would have expected this to fail, but instead it wipes the existing data and replaces it with an empty string. Is this correct behaviour? If it is, is there a work around to force an error instead
...
1
vote
1answer
93 views
How do I find the PHP equivalent of the MySQL WEEK function with mode 7?
Using PHP, how do I find the week number where:
the First day of week is Monday,
week 1 is the first week with a Monday in this year,
and the range is from 1-53?
I'm trying to achieve the PHP ...
0
votes
1answer
145 views
Calculating Mode within existing query to count rows in PHP and MySQL
I have a table rel with fields id refid cellid cat and some working PHP code to count the number of rows for each cellid and return this as an array for later use.
<?php
// connect to database
...
1
vote
1answer
240 views
Mode calculation without a subquery field in MySQL?
In my application, each product group has many products, and each product has one manufacturer. These relations are stored by MySQL in InnoDB tables product_groups with an id field, and products with ...
4
votes
4answers
212 views
Most common number in MYSQL SELECT statement
I am trying to get a MYSql statement to spit out the most common number in a field. I believe I am supposed to use COUNT(QUANTITY) but I am confused by which to GROUP BY and ORDER BY, I can't seem to ...
1
vote
0answers
170 views
mysql cursor lock in share mode
i have a question about the next cursor. hope you guys can help me out with this doubt.
declare var_done boolean default false;
declare var_cursor cursor for
select
tc.columnA,
tc.columnB,
...
1
vote
1answer
271 views
Finding invalid 0000-00-00 dates on mysql database
We are moving our mysql database to strict_all_tables from non-strict mode and would like to find all existing rows with invalid dates (0000-00-00) from all databases and tables on our server. Is ...
0
votes
2answers
343 views
MySQL user-defined function for getting the modal value of a column?
For example:
SELECT MODE(field) FROM table
In another mode, what user-defined function can I use to get the most common value of a column?
I know I can do something like:
SELECT field, COUNT(*) ...
1
vote
1answer
2k views
Is MySQL safe mode the default mode?
I just upgraded my Mac from Leopard to Snow Leopard and in the process my web development environment broke. I have managed to fix a weird "bug" in Apache that didn't happen before and I have restored ...
2
votes
0answers
126 views
How common is MySQL traditional mode in the wild? [closed]
I was recently having a discussion with someone in which they kept insisting that I had to allow for certain exceptions due to the existence or use of MySQL traditional mode. In my experience, I have ...