0
votes
2answers
19 views
Mysql Error: #1247 - Reference ‘karma’ not supported (reference to group function)
Here is my mysql query below. Through many helpful questions and comments I am almost at the end of my journey. The idea behind this query is a user submits a link, the applicati …
2
votes
2answers
79 views
SQL: Is “LIMIT 1” recommended for query where WHERE condition is based on PK ?
I am querying a mySQL database to retrieve the data from 1 particular row. I'm using the table primary key as the WHERE constraint parameter.
E.g.
SELECT name FROM users WHERE u …
0
votes
5answers
59 views
PHP query single line from database
I'm having a problem echoing a single line from a sql query. I'm still pretty new at this but I can't figure it out at all.
I have a page titled "listing.php?id=7"
Inside the pag …
1
vote
2answers
23 views
Inconsistent MySQL DATEDIFF behavior
When I use this query:
SELECT COUNT(*) FROM `my_table` WHERE DATEDIFF(NOW(), updated) > 2
MySQL executes the query with no errors and I get the count of rows that have not be …
7
votes
7answers
110 views
SQL “GROUP BY” issue
Hi,
I'm designing a shopping cart. To circumvent the problem of old invoices showing inaccurate pricing after a product's price gets changed, I moved the price field from the Prod …
1
vote
1answer
16 views
trouble creating a sql statement select statement reference same table twice
Ok, here is setup. Note the code below is SIMPLIFIED version.
PHP 5.2
ENGINE: MyISAM
table quotes q
table users u
FROM quotes q LEFT JOIN users u
ON q.qid = u.uid
Soo.. …
1
vote
2answers
38 views
sql join query question (mysql)
I have the following query, its only returning two records when i have three in the database- where am I going wrong?
SELECT items.id, items.link, items.title, items.image, lists. …
1
vote
2answers
31 views
How do I convert a MySQL function result to tinyint(1)
Here's the problem. In MySQL's Connector/NET a TINYINT(1) field properly translates back and forth into a .NET bool value. If I select from a table with a TINYINT(1) column, everyt …
3
votes
2answers
26 views
MySQL: Getting data for histogram plot?
Is there a way to specify bin sizes in MySQL? Right now, I am trying the following SQL query:
select total, count(total) from faults GROUP BY total;
The data that is being gener …
1
vote
2answers
15 views
collating stats into time chunks
I'm trying to work out an SQL statement for MySQL. I have a series of stats for a range of servers that are reported on a half hourly basis. I have a stats table with columns simil …
0
votes
5answers
51 views
I need help with a MySQL query.
Ok I have a table in my mysql query browser like shown below:
NAME: Jobs:
Kate Contractor
John Janitor
Bob Writer
Don Waitress
Let …
0
votes
1answer
21 views
MYSQL fetch 10 posts, each w/ vote count, sorted by vote count, limited by where clause on posts
I want to fetch a set of Posts w/ vote count listed, sorted by vote count (e.g.)
Post 1 - Post Body blah blah - Votes: 500
Post 2 - Post Body blah blah - Votes: 400
Post 3 - Pos …
0
votes
5answers
49 views
MySQL Query Glitch
I have this MySQL Query glitch in my VB.NET program.
Here is the query in VB.NET:
"SELECT Points FROM user WHERE Username = '" & UsernameText.Text & "';"
It will select …
0
votes
4answers
60 views
How to loop through a mysql result set.
What are some different ways to loop through a mysql result set? I'm new to PHP and MySQL so I'm looking for simple ways to loop through and an explanation as to how the provided c …
2
votes
5answers
51 views
How to Represent Rules using a MySQL Table?
I have a table of 100,000s of USERS (name, age, gender, phone, company, street, city, state, country, zipcode, etc).
I also have a table of thousands of PROMOTIONS which are offer …
