The mysql-select tag has no wiki summary.
8
votes
2answers
267 views
mysql: Can I use two “where”s? Like, “SELECT * FROM table WHERE something and something”?
I have a table with my products and I'm trying to write a page that would pull bracelets with certain colors from the database. So here's what I have right now (in php):
$query = "SELECT * FROM ...
5
votes
2answers
274 views
increasing performance on a SELECT query with large 3D point data set
I have a large dataset (around 1.9 million rows) of 3D points that I'm selecting from. The statement I use most often is similar to:
SELECT * FROM points
WHERE x > 100 AND x < 200
AND y ...
3
votes
2answers
84 views
Need help with MySQL query & PHP
I have the following 3 tables:
(PK = Primary Key, FK = Foreign Key)
Files Table
File ID (PK) File Name ...
------------ ---------
1 a.jpg ...
2 b.png ...
2
votes
2answers
62 views
MySQL Update and Select one pass
I have a table dutyrecord which stores multiple user working hours (subtotal)
and a UserID (volunteerID). With the following selecting statement I am about to set a total hours for each UserID:
...
2
votes
1answer
57 views
Limit on Group by in Mysql
In my web application, I would like to show a list of my users. Users can have different statuses (FB-like). I want to display the last 3 statuses below each user's name.
Dinosaur
I'm a dino!
I ...
1
vote
3answers
34 views
mysql sort by a particular value
I have this query which might return multiple results. Is it possible to sort it and display in the following order pending,failed,application,submitted,canceled.
i.e sort by pa.status as above.
...
1
vote
2answers
73 views
Elegant mysql to select,group, combine multiple rows from one table
Here is a simplified version of my table:
group price spec
a 1 .
a 2 ..
b 1 ...
b 2
c .
. .
. .
I'd like to produce a result like this:(I'll refer to this as ...
1
vote
2answers
33 views
best way to do a “global” GROUP BY a field that is stored as `field1`, `field2`
What I have is a table that has different fields and among them the fields that are called category1, category2. Let's say there is some data stored there
(cat1, cat2), (cat2, cat1), (cat3, cat1), ...
1
vote
1answer
61 views
mysql select: get rows that contain key1 and don't contain key2
i have 3 tables that look like this:
table 1 (main table):
item_id (item_id, item_name) // item_id set to primary
row1 (1, "item 1")
row2 (2, "item 2")
row3 (3, ...
1
vote
1answer
28 views
Select related Elements Attributes as String
i have an items Table and a Tags table. Now what i would like is to have one Select that gets Items under a certain condition and for each item selects the related tags and puts them in a string to ...
1
vote
1answer
59 views
select based on numeric difference - mysql
I have a database table that holds order information and saves the current gold price (world price) automatically at the time of entry
if i look back on the table, and the saved gold price has a ...
1
vote
2answers
1k views
My SQL Dynamic query execute and get ouput into a variable in stored procedure
I generate a dynamic query in My sql Stored procedure. I wanna get the result of this query into a out parameter. How to do this ?
CREATE PROCEDURE 'searchInvoice'
(
OUT numOfRecords INT
)
BEGIN
...
1
vote
5answers
526 views
Mysql/php Select multiple values from the same row?
I have a script and I want to return 5 values from the database that have the same category but it is only returning one. Any ideas?
heres the script
$result = mysql_query("SELECT Category FROM ...
1
vote
3answers
78 views
MySQL: SELECT Doesn't Return Value on “AND”
Am I missing something? My table contains:
'country' with the value 'usa'
'school-type' with the value '4 Year University'
If I use row 2, the query returns '220'. If I use row 4, it also returns ...
1
vote
4answers
102 views
When using SELECT can you modify the value of a returned field based on other fields?
When using MySQL SELECT can you change the value of a returned field based on other fields?
For example, if I have this select:
SELECT city,state,country FROM table
Now if city is empty AND state ...
1
vote
1answer
39 views
Need MySQL help
I'm having a little trouble with an sql query. Which is why I hope some of you will be able to help me.
I've got an query that selects the latest entry from each relational id but i want to select ...
0
votes
3answers
38 views
mysql get row number of a specific result
My website allows users to record bids. Each bid is saved individually and associated to a user Id. A user can have many bids which are used to add up to one overall bid which is displayed upon the ...
0
votes
1answer
32 views
MySQL: get rows from one table that are related to each other throught another table
I have two tables:
COUNTRY
-------------
id
name
------------
NEIGHBOUR
-------------
id
id_country1
id_country2
id_country1 and id_country2 are ids of ...
0
votes
1answer
73 views
MySQL best practices to use SQL_CACHE and SQL_NO_CACHE
MySQL allows us to create select statements with usage of SQL_CACHE and SQL_NO_CACHE options. These options affect caching of query results in the query cache. But for which queries is it better to ...
0
votes
2answers
36 views
Search in CSV with MySQL
I know This can be done using FIND_IN_SET. But i need a little different.
My one fields contain 6 digits separated by comma. and other string has at max 5 values separated by comma.
So I want to ...
0
votes
3answers
49 views
MySQL Query to find monthly active user
I have the following table
CREATE TABLE account (
account_id bigint(20) NOT NULL AUTO_INCREMENT,
time_start datetime NOT NULL,
time_end datetime DEFAULT NULL,
PRIMARY KEY (account_id),
KEY ...
0
votes
2answers
53 views
MySQL - select specific rows
My MySQL is not strong, Please help me to create php mysql_query :
My table like this :
+-------+------+------+------+
| index | col1 | col2 | text |
+-------+------+------+------+
| 1 | 1 | ...
0
votes
1answer
137 views
mySQL - Concatenate Field with Plain Text in CASE used in Select?
So, I may end up having to do this with my PHP on the result set, but I was hoping the DB could do this for me. I'm wanting to check a field and if it matches a condition, set another field equal to ...
0
votes
1answer
72 views
Querying multiple SQL tables for one type of objects
Given the following SQL table (MySQL for instance):
CREATE TABLE `table` (
`id` int(11) unsigned NOT NULL,
`lang` tinyint(3) unsigned NOT NULL,
`data` text NOT NULL,
PRIMARY KEY (`id`,`lang`)
...
0
votes
2answers
198 views
Different “SELECT” syntax in MYSQL with “dtTable.Select” in .NET
I tried "SELECT" MYSQL syntax below using MySQL Query Browser, work normally. When I used this syntax into dtTable.Select(), error is "Syntax error on expression". Please help me, Thanks.
Dim dtTable ...
0
votes
1answer
41 views
Select with set order in mysql
I have a query like this:
SELECT title,id FROM table1 WHERE id IN ('2','7','4','10')
The result set is ordered by id by default,but i need in the exact order of numbers in above set.
How can i ...
0
votes
1answer
42 views
How to understand if a row has been queried by a select query previously?
At my application there is a table and I am inserting new rows that table. There is a Java class that gets a row(by a select query) from that table and send it to web part. I want to get the latest ...
0
votes
1answer
219 views
Fatal error: Uncaught exception 'mysqli_sql_exception' with message 'No index used in query/prepared statement'
When I run the following code, I get the error saying
Fatal error: Uncaught exception
'mysqli_sql_exception' with message
'No index used in query/prepared
statement'
$mysql = new ...
0
votes
3answers
712 views
PHP dropdown box redirect to different URL depending on selection?
Have a dropdown box which can have between 1-3 publications in it, depending on which pubs a person has subscribed to:
<?php foreach ($userCurrSubs as $pubChoice) { ?>
<option value="
...
0
votes
2answers
325 views
MySQL: Group Rows With the Same Value in a Certain Column
I have a table called visitors with the following values:
id ip date time
1 98.112.43.45 2011-01-11 14:00:10 5
2 98.112.43.45 2011-01-11 11:49:00 ...
-3
votes
1answer
55 views
mysql query syntax error 'OR' and 'AND' [closed]
below you can see my working query:
$result=dbquery("SELECT p.product_id, p.product_title, p.product_image1_t1, cr.*, c.campaign_allow_mobilepayment,c.campaign_end_date
FROM ...