Tagged Questions

5
votes
2answers
151 views

Complicated MySQL Data Structure/Manipulation Problem

First off, I apologize for the length. This is kind of complicated (at least for me). Background on the database: I have a products, variables, and prices table. "Products" are the main information ...
2
votes
1answer
84 views

Pythonistas, how do I move data from top to bottom to left to right in MySQL (think multiple values for each ID)?

Task at hand is to move data as shown in table 1 to that of table 2. Table (1) ID Val -- --- 1 a 1 b 1 c 2 k 3 l 3 m 3 n Val columns depend on the number of unique values for each ...
2
votes
4answers
76 views

Artificially Add a Record To MySQL Results

Is there any way to slip in a record to the top of a result set in MySQL? For instance, if my results are: 1 | a 2 | b 3 | c etc I want to be able to get: Select | Select 1 | a 2 | b 3 ...
0
votes
0answers
175 views

mysql UPDATE,INSERT,DELETE from servlet does not execute but returns no errors!

I have been on this for three days and cannot find a solution. I have a Android app -> Java Servlet -> Tomcat 7 container -> mySql 5.5 db architecture. OS: Windows 7 When I ...