Tagged Questions

0
votes
2answers
20 views

Transpose a row into columns with MySQL without using UNIONS?

I have a table that is similar to the following below: id | cat | one_above | top_level | 0 'printers' 'hardware' 'computers' I want to be …
0
votes
5answers
96 views

What’s wrong with my SQL query?

Hi guys, I need a quick look at my SQL query. It's already given me a headache. Comparing some advice I have gotten, I could not figure out the proper format for my SQL. This is my code: $query = …
0
votes
3answers
28 views

MySQL returning distinct results for multiple conditions

I have tables with listings, categories and one that maps them to each other. So a listing can then be placed in multiple categories. Something like the following: listings table id title …
0
votes
3answers
44 views

MYSQL IF(expr1,expr2,expr3) but I don’t want any expr3 (if expr3 then don’t output anything.

As the title says, I just want an output if the if is matched, if it’s not matched then I don’t want any output. I currently have this, but it gives an error obviously ...rFormat=IF(ISNULL(rFormat), …
1
vote
1answer
49 views

Only update the MYSQL field if the field contains null or 0.

I want to insert data into a table, then if the table already has that same input value of rName then it is to update this row (as rName is a unique index) which it all does well. But on the UPDATE I …
0
votes
4answers
55 views

If input name found in SQL then do else do… with an SQL query

Im trying to write an SQL query that will check in the table ‘persons’ in the column ‘rName’ for say a name “jack” and if it exists then UPDATE that row else INSERT a new row with the new rName. I’v …
0
votes
4answers
56 views

Mysql Query doubt

I have three tables namely test1, test2, test3 test1 data =========== id test_id q_id 1 25 2 2 27 2 test2 data =========== id test_id q_id 1 25 2 2 34 2 test3 …
1
vote
4answers
40 views

SQL to update a table only if that table exists in the database

I have a mySQL database that might have a table named jason. A separate instance of the database may not have the jason table (it would have other tables in common) I'd like to run a simple update …
0
votes
2answers
23 views

MySQL: Pulling the current user’s vote on a query of links.

So I have this query that pulls from my links and votes table and I need one last column of data. My votes table consists of every user's vote, a user can only vote once per link and their vote value …
1
vote
3answers
42 views

MySQL sort by calculated value of 2 rows

I'm trying to create a MySQL statement that will sort by a value calculated within the statement itself. My tables look like this: posts +----+-----------+--------------+ | ID | post_type | …
0
votes
1answer
31 views

How to best get 3 prior image and 3 later image records in MySQL query?

Hi there, I'll explain briefly what I want to accomplish from a functional perspective. I'm working on an image gallery. On the page that shows a single image, I want the sidebar to show thumbnails …
0
votes
2answers
19 views

Check if two values overlap lower and upper value

Hi, I'm struggling with some logic here. In my MySQL database I have a table that looks like this: id | lower | upper 1 | 0 | 120 2 | 121 | 200 3 | 201 | 500 Now, my form posts two …
1
vote
1answer
31 views

SQL Query Designer

I am wondering what the best (free preferred) sql query designers tools for Windows Vista are? I am looking to create quite complicated INSERTS and UPDATES that involves joins etc and being a SQL …
0
votes
1answer
33 views

A single MySQL query for ‘bouncing’ table selects

So, say for the sake of simplicity, I have a master table containing two fields - The first is an attribute and the second is the attributes value. If the second field is set to reference a value in …
0
votes
2answers
43 views

MySQL decimal(10,2) Increase By 10%

I have a column with data type decimal(10,2). I want to increase all of the current values by 10%. Thanks.

1 2 3 4 5 29 next
15 30 50 per page