0
votes
5answers
59 views
Select 2 COUNT()’s from MySQL query
I am working on a rankings page for a game and am looking to order the rankings first by wins, and then by losses (in case of people having the same number of wins). The following …
1
vote
5answers
74 views
Optimizing MySQL Query
We have a query that is currently killing our database and I know there has to be a way to optimize it. We have 3 tables:
items - table of items where each items has an associate …
-2
votes
4answers
57 views
convert jquery code to function
hi every body
now i have this code
and its work great
but if i want delete from 2 mysql tables this need write this code two time
now i want make it function like this
$(".delet …
0
votes
3answers
24 views
How to allow users to print and download MySQL query results
I've developed an application that users can use to store lists of their favourite books, books they've read, books they'd like to read, etc., and it's all working fine, but it's j …
0
votes
2answers
31 views
another help in convering code to function
hey,i mad code but its didnot work
according this page
i make this code to function
fuction deleteTable (theidnamefiled)
{
$(this).click(function() {
var id = $(this).attr("id"); …
0
votes
2answers
32 views
Select matches beginning numbers of string on integer
Hi,
I have this table:
CREATE TABLE `test` (
`ID` int(11) NOT NULL auto_increment,
`text` varchar(250) collate utf8_unicode_ci default NULL,
PRIMARY KEY (`ID`)
) ENG …
0
votes
1answer
27 views
Postgres query error
I have a query in postgres
insert into c_d (select * from cd where ak = '22019763');
And I get the following error
ERROR: column "region" is of type integer but expression is …
0
votes
3answers
69 views
Lots of queries to pull up user photos and their comments. (CakePHP)
What im trying to do is pull up profile info w/ the profiles comments. I get everything as expected. No error returned, array is formatted perfectly. My concern is the queries t …
0
votes
3answers
26 views
MySQL counting most common value
I have a MySQL database where users can list books they've read, want to read etc. I'm trying to write a query to find the most common book that users have listed.
My current quer …
0
votes
5answers
30 views
MySQL Query with two values matching
Howdy,
I'd like to select out of one table all the entries that match two criteria
SELECT * WHERE field1 IS $a AND field2 IS $b FROM TablaA
something like that ...
0
votes
1answer
22 views
Is it possible to Update single/multiple columns using “group by”.
Hi All,
I am running group by on 4 columns of two tables. I have unique ID column in two tables. I want to mark both the tables occurrences column to SINGLE/MULTIPLE based on …
1
vote
4answers
68 views
mysql distinct on 6 million rows takes 17 minutes to run? Can I speed this up?
I'm trying to get distinct id's out of a 6 million row table. The query is pretty simple, and the explain seems ok. The distict row is indexed as part of a grouped index of uid-dat …
0
votes
2answers
34 views
How can I use PHP to find a row in a MySQL DB table and insert just one value?
For example, I know I can make a new row and enter values into all fields doing this:
mysql_query('INSERT INTO table_name VALUES ( "id77" ,"some value" )');
Assuming the name of …
0
votes
1answer
19 views
Create Select clause within Stored Procedure?
I have two tables coming which has data from two different systems. I need to reconcile the data in these two tables
The column mapping needs to be made configurable.
E.g.:
Tab …
0
votes
2answers
23 views
SQL and VISUAL BASIC 2008 Queries
Hello guys,
How can I write a sql query that takes information from a database, and then put in the text in a label? I'm not really sure how to do this so please give me a good ex …
