Tagged Questions
1
vote
2answers
1k views
MySQL SELECT CASE WHEN something THEN returning null
Table who
wid--name-------father---mother
1---Daisy------David----Liza
2---Jenny------Joe------Judy
3---Meggy-----Mike-----Manuela
4---Sarah------Joe------Judy
5---Chelsea----Bill------Hillary
...
1
vote
2answers
693 views
Help with MySQL and CASE WHEN with a range of values
I have an accounts table and a records table where accounts have multiple records. I would like to break down the account totals by "count of records" range. i.e. show the breakdown of
Count of ...
1
vote
1answer
2k views
Alternative to MySQL CASE/WHEN?
I'm trying to select some integer values in MySQL. Several of the values are zero, which I want to grab as an empty string, and grab the integer values when available.
So I have something like this:
...
0
votes
1answer
42 views
MYSQL select mutual friends
My 'friends' table has the following columns: id, userID, userID2, state
userID and userID2 don't have a specific order of being put into the database.
I currently use this query to find a users ...
0
votes
1answer
27 views
Mysql Case When for different tables
Can we use mysql case when to query different tables, for example after FROM or JOIN ?
So basically my database has post_type which I'm gonna link to other tables such as blogs, photos, etc, and I ...
0
votes
2answers
2k views
Mysql query select case when true insert
does anybody know how to do this syntax below in mysql?
without Stored Procedure
and in single query only
SELECT CASE
WHEN COUNT(v.value) = 0 THEN (
INSERT INTO tbl_v (fid, uid, VALUE)
...