A request to retrieve information from a database or other information system. This tag can be used to refer to SQL queries against a database (SQL-Server, Oracle, MySQL, etc.) or for filtering and manipulation of memory data structures (jQuery, Linq).
2
votes
1answer
52 views
how can i update SQL table logic
I have a table structured as,
Table 3
Fruit ID - Foreign Key (Primary Key of Table 1)
Crate ID - Foreign Key (Primary Key of Table 2)
Now I need to execute a query which will,
Update Crate ID ...
1
vote
3answers
36 views
How to get choices of each item in a table in cakephp?
This is my choices table
id | question_id | content
1 1 bee
2 1 fly
3 1 dog
4 2 cat
5 2 bat
6 2 ...
-1
votes
2answers
33 views
Show the result from query database php
i have a code like this:
$genre = 'jazz';
$what_genre = mysql_real_escape_string($genre);
$query = mysql_query("SELECT song.id, song.title, genre.genre FROM song INNER JOIN genre ON ...
1
vote
1answer
35 views
Mysql Slow Query group concat with subquery
I have following query
select
`cs`.sku ,
group_concat(
IF(
(
(
SELECT
count(id_catalog_category)
from
...
1
vote
2answers
42 views
sql server 2008 r2 top (1) to update date not working
I have table with two colums (startTime, endTime) , those are from dataTime type.
when I insert a row in this table I want to update previous data in this table like this:
update endTime in the row ...
0
votes
3answers
49 views
SQL Query Using Data from 2 tables
I have 2 tables: authors and books.
in authors i have attributes authorID, authorName, and authorDOB.
authorID is the primary key in this table.
in the books table i have attributes bookISBN, ...
-1
votes
3answers
72 views
Show the data with mysql_query php [closed]
I have 2 tables on database, table 'songs', and 'genre'.
Table 'songs' has 3 columns: id_song (PK), song_title, lyric, id_genre
Table 'genre' has 2 columns: id_genre (PK), genre
in table 'genre', ...
0
votes
1answer
27 views
sql server 2008 r2 update max(recent) date in a table
I have this table
I want to update the max (recent) endDate for orderId = 12.
I tried like this
UPDATE Order_Status
SET endTime = @startTime
WHERE @orderID IN (
SELECT OrderID
...
0
votes
3answers
47 views
Complex MySQL join with dynamic where
Here are my two tables that I'm trying to join...
name: notifications
-------------------------------------------
content | position | member | contentType
...
1
vote
3answers
58 views
SQL Query optimization : Taking lots of time
I am having the following query used to retrieve a set of orders:
select count(distinct po.orderid)
from PostOrders po,
ProcessedOrders pro
where pro.state IN ('PENDING','COMPLETED')
and ...
1
vote
2answers
23 views
Exporting Specific Columns,Specific Rows from a Specific Table of a Specific Database in Mysql
I need to export only subset of columns from a very large table containing large number of columns.Also this table contains million of rows so i want to export only specific rows from this table.
I ...
-1
votes
2answers
28 views
Substract two alias column in SQL Server
I passed two query into inn and out alias column and I want to do this
res=(inn-out) but it gives me an error
Invalid column name 'inn'.
Invalid column name 'out'.
?
select productname
...
2
votes
1answer
51 views
Combining Three Tables Output using another to cross-reference
Background
Being the mySQL n00b I am, the best query I can come up with to match three tables, is run a comparison between two tables, output a variable, and then use that variable to select my ...
3
votes
4answers
74 views
which sql join query should i use?
i'm a noob in using complex query.. so i'm a little bit confused around here..
here are the problem :
i had 2 table, the first one is
employee :
empID name branchID etc
1 ab 1 ...
2
votes
3answers
54 views
Select WHERE clause, split column value and check
I have following table schema
id name type
1 ABC 1,2,3,4
2 PQR 2,3,5
3 XYZ 1,4
4 TCS 3,1
5 PPP 2,3
Here I wants to result display like following i.e, ...
0
votes
3answers
24 views
How can I get that result from CASE statament in MySQL?
SELECT field_name,
SUM(CASE WHEN field_name is not null THEN 1 ELSE 0 END) as count from table_name group by department
RESULT IS:
field_name count
AAA 9
BBB 0
CCC ...
0
votes
2answers
29 views
how to convert count(*) and group by queries to yii and fetch data from it
I want to convert this query in yii
SELECT count(*) AS cnt, date(dt) FROM tbl_log where status=2 GROUP BY date(dt)
and fetch data from that. I try this command (dt is datetime field):
$criteria = ...
0
votes
2answers
33 views
Rails: How to find objects that exceed a certain count
I am trying to do a query where I want to find Users who have exceed a certain number of violations. In my User model each user has_many violation. in my index action I want to find users who have ...
0
votes
1answer
29 views
Self Join to return distinct records in SQLite
I an trying to retrieve the distinct records using the follow SQL Statement:
SELECT count (*) FROM(
SELECT DISTINCT pv1.docid, pv2.docid
FROM Frequency pv1
INNER JOIN Frequency pv2
ON pv1.docid = ...
0
votes
1answer
23 views
Android: SQLite Function Doesn't Return Valid Data [closed]
OK...I'm stumped! I wrote the following code circa 13-Feb-2013 and it has worked perfectly up till a few days ago:
/**
* Get a count of all resources in the selected Alliance
*
* @param db ...
0
votes
1answer
59 views
efficient database design inheritance
I want to design a database with have 2 categories.
There are 2 subcategories in each category, but they are very similar to other category like:
preventive equipment maintenance:
cat1
id, ...
1
vote
2answers
59 views
How to return multiple rows in sql from same table
Pretty new here and could really use some help. I have a table with
TimeID(pk), DateEntry(date), EntryTiem(time),
ProjID(int), ProjName(varchar), Phone(bit),
Research(bit), Notes(varchar), ...
0
votes
2answers
10 views
where clause with multiple fields : Arcgis api for javascript
I am tring to perform a query with three fields .I have three combobox,each one is populated with a field values.I want to query with the value selected from combobox for each field.I want to know how ...
-1
votes
1answer
34 views
error on every sql query with mysqli
I created a new empty php file with simple function for mysqli query, like this:
$dab = new mysqli($dbHost,$dbUser,$dbPassword,$dbDBName);
function dbq($sql) {
global $dab;
$wynik= ...
-2
votes
1answer
41 views
Getting The multi-part identifier error in sql query
In my SQL query, I am getting the error:
The multi-part identifier "a.Position_ID" could not be bound.
I'm not sure whats causing it. Can anyone help?
Thanks.
select distinct
...
-1
votes
1answer
25 views
Hibernate Query, how to group different tables?
Im pretty new to databases, and programming in general, i tried everything but could not come up with a solution, my problem is:
I have 2 tables in my database:
Cars
Model
in my Cars table i have ...
0
votes
1answer
17 views
Finding and Filtering XML Data
I have an XML document here:
<?xml version="1.0" encoding="utf-8" ?>
<CATALOG>
<CD>
<TITLE>Empire Burlesque</TITLE>
<ARTIST>Bob Dylan</ARTIST>
...
0
votes
1answer
31 views
XmlSlurper parsing a query result
I have a query that bring back a cell in my table the has all xml in it. I have it so I can spit out what is in the cell without any delimiters. Now i need to actually take each individual element and ...
-1
votes
1answer
35 views
need assistance creating sql query with two IN statements
I need a query that has two IN() statements inside it.
Of course the following is totally wrong, but it's sort of what I'm looking for:
<?php
$query = mysql_query("SELECT 1.field1, 1.field3, ...
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)){
...
-3
votes
0answers
19 views
Get all posts starting with first two letters in Wordpress [closed]
I have a plugin in which an alphabetical list is posted where people can click on a letter and they get the posts with that letter. So if they click on A, they see all post titles starting with the ...
0
votes
2answers
52 views
Trying to compare a rowvalue to form value while in a query using cfif and performing the query
I know, the title sounds confusing but I literally couldn't think of another way to word it. Anyway, here's what I mean
<cfquery name="search_all" datasource="ContactData">
SELECT DISTINCT
...
1
vote
0answers
38 views
Last non-empty child over period using MDX
[EDIT: Example was not entirely correct]
I've been pulling my hair out on this MDX issue...
I am making a cube concerning billing.
I have 2 (relevant) dimensions: budgetbill and month
And one ...
0
votes
2answers
56 views
SQL Selecting One Entire column based on from parameters? [duplicate]
I have this table and need help
Friends:
My_E_Mail (VARCHAR) AND
Friends_E_Mail (VARCHAR)
These are some sample values:
alester@pam.com carl@pam.com
alester@pam.com greg@pam.com
...
0
votes
1answer
38 views
Access 2010: Can't access query after splitting DB
I split my DB and now when I try to change some information on a few queries, I can't access them. I have a front end and a back end and understand that I should make changes to queries/forms via the ...
1
vote
4answers
51 views
Including *any* query string in my site URL causes a 404 [closed]
First I apologize if this has already been asked; I used the SO search & advanced search and even an hours' worth of GoogleFu, all to no avail.
The issue I'm having is that any time I try and use ...
0
votes
1answer
64 views
PHP and XPath queries
I need to strip some values and also some raw HTML from an HTML document. I thought of using XPath, but I cannot get my queries to work.
Here is what I want to achieve:
<div class="unit-id">
...
1
vote
5answers
50 views
How do I match against multiple conditions on a table join?
I have two tables:
users attributes
id|name id|name|user_id
------- ---------------
1 |foo 1 |bla | 1
2 |bar 1 |blub| 1
1 |bla | 2
How do I ...
0
votes
1answer
44 views
How to merge multiple sql queries into one? [closed]
I am trying to decrease my asp classic page load time. The page calls sql server and gets the record set many times. Basically the structure of the code is like
This is actually the pseudocode of asp ...
0
votes
0answers
19 views
PDO query fails to execute when AUTO_INCREMENT included in creation script, but query seems to be valid
I'm trying to get some test scripts set up with PHPUnit using in-memory databases, but I'm having trouble creating the databases correctly. When I first ran the queries it was running fine, but I'd ...
0
votes
0answers
26 views
Retrieving string-encoded binary data from MongoDB in PHP
I have stored some binary data in MongoDB as a string. How can I retrieve it from PHP?
This article describes how to do it in Perl, but how can I manage it in PHP?
The following doesn't work:
...
-1
votes
1answer
48 views
How to use join in sql query? [closed]
I am using Microsoft SQL server, and I want to use the join but from multiple tables.
This is what I have
select a.*, b.Position_Name, c.StartDate, c.EndDate--, e.firmName
from NewHire a--, Firms e
...
0
votes
1answer
18 views
HibernateException: Errors in named query
When running a particular unit-test, I am getting the exception:
Caused by: org.hibernate.HibernateException: Errors in named queries: UPDATE_NEXT_FIRE_TIME
at ...
-3
votes
0answers
40 views
SQL coding for database [closed]
I am trying to display my data of name field in ascending order as below but this does not work. Can anyone help to fix this.
$fetch = mysql_query("SELECT * FROM example WHERE name REGEXP '^$param' ...
0
votes
3answers
63 views
Counting frequency of customer
I have this table on sql sever
cstomer |No_Nota
CUS000 | 98342
CUS000 | 98343
CUS000 | 98343
CUS001 | 98355
CUS001 | 98355
I would like to count the frequency of each customer. ...
1
vote
1answer
24 views
Join on piped column data
I have to work with a MySQL database where some columns have different IDs saved in one column, separated by a piped character. For example:
Users table:
id | username | groups
1 | user1 | ...
0
votes
1answer
40 views
insert multiple rows at a time in an SQLite database: Error with id_column
I'm trying to figure out how do multiple insert in sqlite3 database according this answer
Is it possible to insert multiple rows at a time in an SQLite database?
It seems to work perfectly, but I ...
0
votes
0answers
30 views
dates not sorting properly in query
I have a query that chooses from a table depending on a specific date range, but I cannot get it to order them properly. A date of May 24th, entered in the database after the June entries, appears at ...
0
votes
1answer
49 views
How to call a stored procedure in asp classic?
In my asp code I want to call a stored procedure. This is the code that I have that is working:
newHireSQL = "EXEC sp_selectNewHireSQL"
Set rsGetHireID = Server.CreateObject("ADODB.Recordset")
...
0
votes
1answer
55 views
How to write this query in Doctrine2 ? (subquery + JOINs)
This is the query I want to implement using Doctrine2 :
SELECT d1_.codeLieu AS codeLieu1, d1_.nomLieu AS nomLieu2, d1_.lngLieu AS lngLieu3, d1_.latLieu AS latLieu4, m2_.libelleMention AS ...

