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).
0
votes
0answers
9 views
How to handle overwriting vs. non-overwriting data when Inserting/Updating a row in a table?
I have a table in my database and I am working on an ETL program that will put data into that table. I need to be able to support two different modes.
In non-overwrite mode, I'd like to be able to ...
0
votes
1answer
20 views
MySQL Create pivot table from existing column in existing table
I've got a prexisting table that contains all kinds of customer information. Currently it also has the "city" as well as the "region" and the "state" listed in a 3 columns as strings. Redundant info!
...
0
votes
2answers
32 views
MySQL query results not displaying
I'm trying really hard to figure out why information from a database won't show up. I think my query is failing, but I've talked to a few people and they don't know why it's not working.
Here's my ...
0
votes
1answer
35 views
jQuery code somehow moves all elements together, why?
I bumped into this code:Foursquare like feed here's the working DEMO
but I can't figure out why it makes all the feeds ("#feed0", "#feed1","#feed2" ...) altogether??
Ironically... Why does this code ...
0
votes
1answer
22 views
How to get the player with the highest score with SQL
here is the setup of my problem.
class Match < ActiveRecord::Base
attr_accessible :acceptor, :a_id, :c_id, :game, :game_id, :wager
belongs_to :game
has_many :scores
scope :matches_won_by, lambda ...
-2
votes
0answers
47 views
Complex select query - sql server [closed]
I'm a novice of SQL, my question relates to the following tables:
Comments
id_comment|comment_product|comment_date|product_id|user_id
1 |Lorem 1 |2013/06/12 |1 |1
2 ...
0
votes
0answers
9 views
How to call a user defined function in Hive?
I want to write a hive query that depends on paramaters passed into a script. These parameters might require me to select from an unknown number of columns.
What I want to do is have one of the ...
0
votes
2answers
14 views
Binding number to the LIMIT of a PDO query with PHP [duplicate]
I am having an issue with PDO which I have seen discussed around but the different solutions provided did not work for me. It is when binding a number to set the LIMIT of a SQL query.
Here is the ...
0
votes
1answer
20 views
Query field has to match multiple values
I'm currently having an issue with my query and i can't figure out the final step in order to make it work.
The problem is that i have a filter option on my website which gives visitors the ...
0
votes
1answer
16 views
linq query Unable to create a constant value collection within collection
im trying to get the articles which are labled as publid (DisplayFor = false) or with required permission (DisplayFor = true; and article.groups contains the granted groups;) and (GroupId = Guid.Empty ...
-4
votes
2answers
42 views
SQL INSERT with SELECT inside, maybe inner joins
I have this INSERT:
INSERT INTO gamecodes (gamecode, accountname, premium_points, alreadyused)
VALUES ('$gamecode','$accountorname',$premiumpoints,'N')
I need a help. In variable $accountorname I ...
-1
votes
0answers
27 views
How can I get better performance with this SQL database and its queries?
It is a ASP.NET MVC 4 web application using entity framework model first.
I have a database with two tables one that have static data which is called Category and another one called News.
This web ...
1
vote
1answer
10 views
SQL Server , restrict UNPIVOT to order columns automatically
I have a table with data in one row:
Account | OrderID | OrderName | Priority | Fasting |AssignedTo |ResultsTo |Location
...
0
votes
0answers
14 views
In DB2 for LUW, can I return all associated rows in a join if only one row matches
Let's say we have Table A and Table B. Technically, this is a many-to-many relationship. One entry in A can be associated to multiple entries in B, and vice versa. My issue arises when I have a ...
0
votes
0answers
6 views
MYSQL, Nested Set Method, simplified query to retrieve entire branch fails
I am trying to take a query which is a union of two seperate queries by simplify it as a single query. The issue I am having is that the simplified query returns the entire contents of the table and ...
0
votes
0answers
8 views
SEOstats API SEMrush keyword query methods?
I'm using SEOstats API (https://github.com/eyecatchup/SEOstats).
With the SEMrush methods, how do you get keyword data--specifically how to you write the query--where does the keyword go?
I have ...
1
vote
2answers
37 views
Complicated Database Setup: Trying to display two field values that correspond to three other specific fields
I am creating a page to display a bunch of information from a database, but the database that I am working with is set up funky.
While there are about 15 columns, the ones I am concerned with are:
...
0
votes
3answers
35 views
SQL Statement with bad performance, although using index
I have a simple SQL statement in my application:
SELECT SQL_NO_CACHE key_event_id, MAX(report_ts) AS max_ts
FROM `key_event_reports`
WHERE report_model_id = 2
GROUP BY key_event_id;
The ...
0
votes
3answers
14 views
Show only table names when viewing postgresql tables
So I have no idea how to do this and I've been reading the documentation and searching around but I can't seem to find anything. \d gives me a nice list of all the tables and information on them but I ...
1
vote
0answers
16 views
search in key-value table with hibernate (or SQL query)
I have two tables:
Content(id,data,title,size)
ContentProperties(id,key,value,fk_content_id)
Each content record can have many properties (one to many). I want to use hibernate to retrieve content ...
0
votes
1answer
5 views
How to extract Stored Procedure body in Teradata
I'm trying to extract Stored procedure DDL by querying system tables.
If I run the following query
select * from dbc.tvm where TableKind = 'P'
both fields RequestText and CreateText contain NULL.
Is ...
0
votes
1answer
16 views
HQL select where object1.list<object2>[0…n].Id = givenId
I have a class Transaction, among its parameters is List of Tag Tags.
I want to select List of Transaction by TagId?
something like this(my query is obviously wrong at the WHERE clause...:
...
-1
votes
0answers
16 views
Get data for rdlc from database where user id use select
I have a 3 Forms using LocalDatabase:
DataKrm.cs
ReportDataKrm.rdlc
PrintDataKrm.cs
and I have a data set Database1.DataSet.xsd
at DataKrm.cs I have:
DataGridView1
textBox1 to get your Name ...
-2
votes
1answer
28 views
Creating an Entity from a Query?
Is it possible to create an entity directly from query?
Not sure how it is. But I was told I can create an entity from query (Not VIEW).
My need is to join multiple tables and pull only some columns ...
0
votes
0answers
21 views
dibi:query best practice on duplicate key
I wonder what is best practise for dibi when inserting and if exist then updating a specific row.
EDIT, truncating my post for better readability:
Found an error, its not ON DUPLICATE KEY UPDATE SET ...
-3
votes
0answers
27 views
JPA/Criteria using clause Join in subquery [closed]
people!
I´m beginning to learn JPA/Criteria. I would like you tips or suggest about this query to write JPA/Criteria.
This query native.
Select t1.coluna1,t3.soma
from tabela t1
inner join tabela ...
0
votes
3answers
25 views
SQL : query that only contain one word
i want to select name that only contain one word with SQL wildcards..
i have tried
select name from employee where name not like '% %'
it works,but i wonder if there are other ways to do it using ...
1
vote
4answers
41 views
SQL Query List of months between dates
I've been searching without success for a way to list the months where my tables entries are in use.
Let's say we have a table with items in use between two dates :
ID StartDate EndDate as ...
0
votes
2answers
24 views
Query on variable uri
Me and our team have an interesting case on selecting data from an database. We were wondering if you lot have a different approach on solving this case.
The case is as follows:
We have an booking ...
0
votes
0answers
12 views
Access 2007 - Left Join to a query returns #Error instead of Null
Similar to this question, but their problem with the query was never fully solved:
#Error showing up in multiple LEFT JOIN statement Access query when value should be NULL
I get #Error when I'm ...
0
votes
1answer
20 views
Convert Database From MSAccess to SQlite for android
I have a database of MSAccess and now i want to convert into SQLite database. Is it possible? If yes and if you have any idea related to it than please Share with me. Thanks.
1
vote
1answer
28 views
Import specific records from one database to another
I have 2 databases:
DB1
customers (columns: customernr, name, adress, db2clientid)
invoices (columns: invoicenr, customernr, totalamount, taxamount,
createdate)
DB2
tblinvoices ...
0
votes
2answers
17 views
Rails Performing IN Operation
Might get grief, but here it comes.
I am trying to execute an IN operation on one of my clauses in Rails.
The call is:
@ret = BBOrder.find(:all, :conditions => ["symbol LIKE ? AND ...
0
votes
1answer
10 views
mssql query join to work out esclation person based on discounts percentage
Hi I have the below working query(mssql)
select
max(load_number) load_number,max(linediscount) maxlinediscount,max(CustomerBand) customer_band
from [Linked_Order_lines]
join ...
0
votes
1answer
25 views
How to select columns that are similar values and calculate quantity and sum of prices
Hey I have a table in my Database like this that you see below.
I want to select "DocumentNumber" where they have similar values.
You see that there is three 10006513 values
Ducumentnumber ...
0
votes
1answer
17 views
ElasticSearch: Secondary indecies on field values using Java-API
I'm considering to use ElasticSearch as a search engine for large objects. There are about 500 millions objects on a single machine. For far is Elasticsearch a good solution for executing advanced ...
0
votes
2answers
25 views
PHP - URL with querystring with “&” in XML
I have a small problem with dynamicly creating "sitemap.xml". The problem is that the XML is deleting the "&" character in LOC
Here my code, that creats the r
...
0
votes
4answers
40 views
Select wont work
Just what the dickens is wrong with this query?
SELECT id,
SUM(CASE myDate
WHEN DATEDIFF(day, myDate, GETDATE()) = 0 THEN [Items]
ELSE 0
END)
FROM ...
0
votes
1answer
34 views
Query Results and display data
Hello I need help in creating a stored procedure that pulls out multiple data from different tables.
My current stored procedure is as follows:
'@partnername nvarchar(120)
as
select ...
0
votes
0answers
7 views
Remove query strings from static resources - not wordpress
When using GTMETRIX.com to evaluate my site it returns:
Remove query strings from static resources
The offender is:
http://www.xxxxxx.com/img/slide1.jpg?1371550256182
I know this occurs because of ...
0
votes
4answers
28 views
How to combine the following queries result in mysql
FIRST QUERY
select b.id , b.value,b.name from table_1 b where b.id = 900;
RESULT:
id value name
900 5027 AA
900 79426 BB
900 132276 CC
900 302885 ...
0
votes
4answers
65 views
SQL select values with or
Is it possible to make a query which does the following
select a,b or c,d from table where source=2 or target=2;
I want to select a,b if the source=2 or c,d if the target=2.
Is this possible ...
0
votes
2answers
36 views
query - group by max amount
tbl_transaction
Sender Receiver Amount Date
1102504637 31750690083 50 03/04/2013
1102504637 31750690083 50 04/04/2013
1102504637 31750690083 50 06/04/2013
1102504637 ...
0
votes
0answers
26 views
Good method to authenticate files to users
I'm developing an API to let my users access to files stored on another server.
Let's call my two servers, server 1 and server 2!
server 1 is the server im hosting my web site, and
server 2 is the ...
0
votes
4answers
25 views
Invalid use of group operation in mysql while using group by
select a.col_name1,max(b.col_name2) from table_a , table_b b where
a.candidate_id = 900 and a.col_name1 = b.col_name1 and a.col_name2=
302885 group by b.candidate_id;
This is query is working ...
1
vote
1answer
40 views
With MySQL how to distinguish between a NULL value and a non-existent value
For example there is a main table:
+----+---------+
| Id | column1 |
+----+---------+
| 1 | a |
| 2 | b |
| 3 | c |
+----+---------+
And a second table to join with:
...
0
votes
2answers
11 views
Sql Query to get data from associative table
I have to fetch data from two tables
(PK) = Primary Key
(FK) = Foreign Key
TABLE1- [STUDENTS]
s_id(PK) name other
1 a z
2 b z
3 c z
...
0
votes
1answer
17 views
SQL to get a particular thread based on two user
I recently build a thread based messaging system with the help from this post Thread Messaging
The 3 tables that involves are
member(member_id, member_userunique, and so on..)
...
1
vote
3answers
24 views
mysql returns wrong results when using “like”
Yeah like title says, you will think of utf8 set names problems .. maybe it's even true.
I have this query:
select distinct ort from veranstaltungsorte where ort like 'ka%';
And although it starts ...
2
votes
4answers
51 views
Query not returning in order
If you require any additional information for me to help you assist me please let me know. The project requires to be password protected, though.
I am utterly baffled at the moment because I have a ...

