0
votes
1answer
34 views

MYSQL supplied argument is not a valid MySQL-Link resource [duplicate]

ERROR: Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in /var/www/247QC/system/core.php on line 21 Invalid query: Whole query: SELECT * FROM users WHERE username='matt' ...
0
votes
2answers
31 views

Select Query in MySQL for multiple tables

I m working in MySQL and have to write a select query. I have related data in four tables. Now, the parent table may have data whose child data may not be present in lower tables. I want to write a ...
0
votes
3answers
48 views

SQL select query to return only if a record has a field of a single value

I have built my query here thus far: SELECT POLICYNUMBER, FPLAN, FEFFYY, FEFFMM, FEFFDD, FINSTP, CLIENTNUM, FIRSTNAME, MIDNAME, LASTNAME, BIRTHDATE FROM PFCASBENE INNER JOIN CMRELATN ON ...
0
votes
2answers
53 views

MySql SELECT names from users WHERE name LIKE “$searchTerm” AND status <> 'blocked'

I need to make a Query like this. MySql-> SELECT names from users_tb WHERE names LIKE "$searchTerm" AND status <> 'blocked' So The Query should SELECT all ROWS with names that match the ...
-1
votes
1answer
27 views

Getting syntax error in sql select statement

I have this sql statement: SELECT inquiry_response, inquiry_response_date, date_initiated, date_closed, (select count(*) from Inquiry_Responses ...
0
votes
2answers
37 views

Counting Combinations of rows/columns across one table

I have a query I am having trouble wrapping my head around. What I'm trying to do is come up with a report that will have rows of the major(Accounting, Business, etc) with columns of the type of ...
0
votes
4answers
33 views

Selecting all data from all columns in a MySQL Database

Say I have the following data in a database DB1: Table1 id int (50) attribute varchar(255) Total Rows : 6550 Table2 id int (50) attribute varchar(255) attribute1 varchar(255) Total Rows : 10550 ...
0
votes
2answers
56 views

Questions about SQL query

I need to select exam results of students in class 7A, but need to look into another table (student_profile) to identify students in 7A (identify by student_id). I wonder which of the following method ...
0
votes
1answer
33 views

Cassandra 1.2 CQL QERY SET

I have a table in Cassandra containing name, item. Using the following data types: name is text, item is set. f.e. I have these entries: name | item a | {item1, item3} b | {item2, item3} c ...
2
votes
4answers
84 views

SQL complicated query

I have a following problem with my SQL query. I was managed to successfully execute about 15 of them but this one makes me sick. It's even hard to translate but probably you will understand. Show ...
0
votes
2answers
33 views

Query in a LIKE-TREE table

I have a table with the following columns: idCat, idParent, Des idCat is autoincremented, Des is for Description and idParent can be "0" if the record is a parent or it can have "idCat" value of a ...
1
vote
2answers
48 views

filtering column values while using SELECT in MySQL

I have a mysql table with a column Doc TEXT. the column contains HTML as content. I want to select the column with filtered to get only URLs from the content. column content contains A HREF="(.*)" . ...
2
votes
2answers
32 views

SQL SELECT only the rows not containing ID used in related table

I have two tables with simple relation. One table is list of sales. The second table is list of products. Relation is that in the Sales table is a Product ID that points to the given product. I need ...
0
votes
1answer
52 views

How to select values that are out of range?

Hi there I have a table with the structure below: create table prices( id int not null, mini float not null, maxi float not null, primary key (id) ); And I select the ids of the ...
1
vote
4answers
48 views

How to merge a select statement with a new dynamic values as columns?

In my sql server code, I have this select statement select distinct a.HireLastName, a.HireFirstName, a.HireID, a.Position_ID, a.BarNumber, a.Archived, ...
1
vote
2answers
86 views

How to loop through stored procedure recordset?

I have this select statement declare @t table (Percentage float) DECLARE @acc INT SET @acc = 1 DECLARE @max INT select @max = max(HireID) from NewHire WHILE (@acc <= @max) BEGIN IF ...
0
votes
4answers
69 views

How to select rows where the ID exists in one table, but not another?

I have 2 tables: 1) An Order table (which has OrderNumber as the Id) 2) An Items table which can have multiple rows and also has an OrderNumber column tying each row to the ord er row above. Most ...
0
votes
3answers
49 views

Complex MySQL join with dynamic where

Here are my two tables that I'm trying to join... name: notifications ------------------------------------------- content | position | member | contentType ...
0
votes
1answer
53 views

mysql query selecting wrong field

$something_else = mysql_query('SELECT image_id FROM items p LEFT JOIN list up ON p.item_id = up.item_id WHERE up.UserID = "' . $user_id . '"'); while ($r=mysql_fetch_assoc($something_else)){ ...
-1
votes
2answers
60 views

SQL Server : select same colums count by date

Hi guys this is my table L_Date 2013-05-14 2013-05-12 2013-05-13 2013-05-15 and I need now all dates and count result where L_Date is <= than the selected like: L_Date Count (<=) ...
0
votes
1answer
26 views

Update Query when username changes

Here is a query I'm trying. Please don't laugh as I'm currently clueless, lol. UPDATE toondb SET ttnusername = (select username FROM user WHERE userid='1') WHERE (select username FROM user WHERE ...
0
votes
1answer
52 views

Multiple options for query from select menu

I have a search area which contains 3 field, one is an input field and the other two are drop down menus. Either someone enters something into the input field or they select from BOTH of the drop ...
0
votes
1answer
29 views

SQL select statement issue

I'm facing a SQL SELECT problem: There is a question, this question has an anwser, and this answer has a next question, and so on... This is my query: SELECT Q.question, A.answer, A.nextQuestion as ...
1
vote
2answers
32 views

Select most popular users given by likes, posts and comments

I have a forum and I would like to find the most popular users. The most popular users definded by the most likes on posts and comments and also defined by the most total posts and comments. A user ...
0
votes
2answers
36 views

MySQL 'AND' gives me error

I have this MySQL query: $querynotis = "SELECT * FROM notifications WHERE pid = " . $_SESSION['sess_id'] . " AND read = 0"; And it gives me the error; You have an error in your SQL syntax; ...
0
votes
2answers
28 views

how to select max of mixed string/int column?

Lets say that I have a table which contains a column for invoice number, the data type is VARCHAR with mixed string/int values like: invoice_number ************** HKL1 HKL2 HKL3 ..... ...
0
votes
3answers
38 views

MySQL - SELECT something IF (something is true)

I've got a database with 3 columns, "ID", "username", "password". I'm pretty new on SQL (still learning :P ), and well, I'm not able to get my idea working. This is for an Android app. I've made an ...
0
votes
1answer
33 views

Grabbing key value from a mysql query

I thought this was quite basic but for some reason I can't figure it out. I have this query $result = mysql_query("SELECT * FROM Users.Information LIMIT 0,1"); To grab the data (such as ...
1
vote
3answers
49 views

Not selecting the id which unsatisfy condition using sql

I have a table with RepId and date. Table: 1 RepID logTime 108981 2013-04-09 00:00:00.000 108981 2013-04-09 00:00:00.000 108981 2013-04-11 00:00:00.000 108981 2013-04-11 00:00:00.000 108981 ...
0
votes
1answer
26 views

SQL MS ACCESS - Select Last Updated Row with condition

First of all thank you for any support you're able to provide. I'm working on building a workload tracking system, I have a table that currently has listed all the tasks to be completed (each with a ...
1
vote
2answers
42 views

SQL query, select values of a column only if

Im using SLQ server 2005. I have this table were i register a list of items creating an "order" wich will be sent to the warehouse so they know what it needs to be sent back. this is my code. ...
0
votes
3answers
33 views

Relating the values one table to another table

I have two tables. One is named usertbl with columns user_id, user_name, and acct_status. possible values for acct_status values are 0, 1, 2, 3. Another table named accountstatustbl has the following ...
0
votes
1answer
43 views

referring to the already fetched results in a query within the same query

So suppose I have this table with 4 columns: id content parent timestamp whereby the parent column refers to an id of another entry in the table I want to accomplish the following: Select the ...
0
votes
1answer
24 views

how to select data from primary key in a table when it's not equal to forign key in another table?

Here's what I have: 1. I have a table called "International_Codes" with 2 columns (int_code_id, desc) 2. I have another table called "size_charts" which has (int_code_id, xs, s, m, l, xl) I have a ...
0
votes
1answer
41 views

Where (or even any kind of join) doesn't work with Temp table in SQLite?

I have to collect data from many sources into a temp table before performing another SELECT on this table and another table. The temp table has a column called RoomID while the table (which I want to ...
-2
votes
2answers
54 views

Syntax error when using parentheses with BETWEEN [closed]

I thought that the following would be the way I search for all calls placed in a 10 minute time frame SELECT * FROM `call_log` WHERE start_time BETWEEN ('2012-05-01 17:50:00' AND '2013-05-01 ...
1
vote
3answers
72 views

Creating Select statement with variable in single quotes

This relates to taking data from a Google Fusion table. When I first set up my site, GF tableid was a numeric value, (var tableid = 123456;) and I built a query like this: layer.setQuery("SELECT ...
0
votes
1answer
37 views

Beginner fusion table query…two column location and st_distance

I'm altering a google example template to try to construct a query that finds the nearest location in the table to the user-entered city. And in this example, I just want to output the lat and lon ...
1
vote
2answers
108 views

INSERT INTO only if not exists MYSQL [duplicate]

I'm currently insert data by the way of using SELECT and not VALUES as it is by default. The problem is that I can't find a way to insert data only if it's not in the database. This is my current ...
0
votes
2answers
60 views

Select count(*) doesn't return rows which have the results of 0 in SQLite?

Here is the sample table: A | Column1 | Column2 1 5 8 1 3 2 2 6 9 2 ...
2
votes
2answers
33 views

getting latest timestamp from 2 joined tables for each row output in select statement

I have 3 tables as shown below. I want to get a list of member names, ids, together with the latest activity time for each of them, given a particular member name search term. This 'latest activity ...
-1
votes
2answers
44 views

MySQL table to column list query

I am trying to workout how to query the table I have and produce a specific output format in my select statement. The source table data is as follows +-----------+------------------------+ | ...
0
votes
1answer
50 views

MySQL: eliminating functions from queries

How can I write this mysql query without using functions? SELECT word FROM dvddict JOIN dvdrevdict ON word=RIGHT(revword, 4) WHERE LENGTH(revword)=9; The dvddict table has a column word ...
0
votes
1answer
62 views

Error #1159 with MySQL FEDERATED table and one kind of query

I have one problem with FEDERATED table in MySQL. I have one server (MySQL version 5.0.51a), who serve to store client data and actually nothing more. The logic database are stored in another server ...
0
votes
2answers
55 views

i need help to solve select query where IN clause?

i need help to solve select query where IN clause? 1) now problem is that select query not working where pid IN ($pid)? 2) second problem is that CCID input text is empty? when i echo $pid=implode ...
0
votes
1answer
25 views

Select Query giving error in sql server R 2?

I have a database called Inspection, and a table called User. I first try to query it as follows: select * from User ; ... and then like this: select * from Inspection.dbo.User ; Both of these ...
2
votes
3answers
90 views

looping through mysql table data

I have a mysql table 'table1' with data id mailid currentstatus assignedto assignedtime logtime 4338 14928 assigned user1 4/15/2013 13:44 4/15/2013 13:44 4352 ...
0
votes
2answers
30 views

Cast() doesn't work properly in SQLite?

I have a column of image, I want to add a select column (called HasImage) to indicate that if the image is null, the HasImage should have value of false (or bit 0), otherwise the HasImage should have ...
0
votes
2answers
48 views

MySQL Select Newest Approval Date among article date & comment date

My aim is to write the last modified date (lastmod) of my approved articles for my sitemap.xml file. There are 2 possibilities for this data. If article has no approved comment, then lastmod is the ...
2
votes
4answers
49 views

Detect \n character saved in SQLite table?

I designed a table with a column whose data contains \n character (as the separator, I used this instead of comma or anything else). It must save the \n characters OK because after loading the table ...

1 2 3 4 5 32