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
3answers
33 views
How to understand what I need to do in a query
I have a table as such (Taken from sqlzoo.net),
+-------------+-----------+------------+------------+-------------------+
| name | continent | area | population | gdp |
...
1
vote
2answers
17 views
Echoing Fetch_Assoc Fails
I'm really stuck on something here, I honestly cannot see anything wrong here myself and I've done something like this several times throughout my site.
I want my home page to update with up to the ...
0
votes
1answer
28 views
executing django query in same statement
This might be a silly question. Is there a way to execute multiple queries in one execute statement?
cursor = conn.cursor()
cursor.execute("Select * from my_tables; show tables;")
result = ...
1
vote
0answers
16 views
.filter() a datastore query for one parameter with multiple values
so i have list of users
user_list = [user_object_1,user_object_2,user_object_3]
users created artifacts and ownership was assigned like this user = db.ReferenceProperty(Users, ...
0
votes
1answer
12 views
HQL query for finding records with different place ids but same ammendability for comparing records
I have a table called task where place id, category ids and ammendability are the columns. I call a method where I pass two place ids placeId1, placeId2.
First query fetches the ammendability list.
...
0
votes
1answer
23 views
Mysql query case with range, and case with currency
I have a table 'order' where the columns pretty much look like this:
| order_id | shop_id | order_total | currency | created_at |
Now I want to make a query, that returns a table looking like this:
...
1
vote
3answers
42 views
Selecting age groups using SQL
This is a follow-up question on Get age from the birthday field with type date using SQL. I have a date field in a MySQL database for the birthday of a user and get the age using this query:
SELECT
...
0
votes
2answers
36 views
SQL Query: LEFT Join only returning intersection
I've been struggling with what I believed is an easy SQL Query:
SELECT
resource.firstname,
resource.lastname,
resource.fte,
project.name as project_name,
role.name as role_name,
...
0
votes
1answer
29 views
referencing table in parent query in a subquery with SUM and group by
My query looks something like this :
SELECT tablea.field,
(
SELECT sum(count) FROM
(
SELECT count(distinct(subtable.regdate)) as count
FROM subtable
where subtable.regid = ...
4
votes
1answer
44 views
Brain-Dead MySQL Select Optimization (Using Temporary, Using Filesort)
I'm currently working on a project involving Patents pulled the USPTO website, as part of this project I'm using the database created by people from the University of Illinois
(Paper: ...
0
votes
1answer
26 views
Assign range to variable using between
I have the following decitiontree:
declare @placeholder varchar(20)
If @Number1 = 1
AND @Number2 = 0
BEGIN SET @placeholder = 'NULL'
END
ELSE IF @Number1 = 1
AND @Number2 > 0
BEGIN SET ...
-1
votes
1answer
54 views
Replace a string within mysql entry [closed]
UPDATE listings SET post = REPLACE ( images, 'img=17', 'img=500' );
I'm trying to do something like:
Replace anything after REPLACE ( images, 'img= and replace it with 500
-- Edit --
Instead of ...
0
votes
1answer
46 views
MYSQL: Sum issue
I am having a small issue where my life are counting wrong at the top but at the bottom of the while fetch array they are all correct.
They are stored in the DB as the following
life = 1
IPP =1
...
0
votes
1answer
53 views
PHP, MySQL, Array from HTML Form in Search Query?
I have a search engine with an html form that sends data to a PHP script the queries a MySQL database. In the html form, I have a option that allows multiple selections. Thus far, I have put square ...
2
votes
2answers
22 views
How to update field in a table based on existence of a row in a query in MSAccess
I have an MS Access table with one field I want to update based upon whether a key exists in a separate query. I have tried to research and found similar but not the same problems (e.g. Access 2003 - ...
1
vote
1answer
33 views
Fusion of two tables with Specific SUM operation in SQL Server 2012
I have two views in my database, here are their structures:
Table 1 (Stock product entries) :
---------------------------------------
| Date | Product | Quantity |
...
1
vote
2answers
44 views
php mysqli multiple queries using first query result
I am trying to select results from DB.
I am tried multiple query and prepared also.
but, both of them are not working to me :(
$query = "SELECT u.id FROM user u;";
$stmt = ...
3
votes
2answers
47 views
Joining on the same table more than once
I'm probably being a bit dumb, hopefully someone can help.
I have a simple 2 column user table (ID, USERNAME).
I have a comments table for images (COMMENT, COMMENTFROM, COMMENTTO)
COMMENTFROM is the ...
0
votes
1answer
33 views
SQL append “-large” to every second row where column name is “clean_name”
Is this possible?
I want to append the string "-large" to every second row within my products table, where the column is clean_name
0
votes
1answer
52 views
I cannot figure out why this is not returning a result from a php script where did I go wrong?
I have been trying to build a database for my father who owns a model circus store and I have run into a few issues this particular issue I cannot identify. When I run the search it returns empty ...
0
votes
2answers
26 views
SqlLite query a range based on column value
I have a project in SQLite which contains a table
Prefix table
prefix id
T6A-T6Z 1
YAA-YAZ 2
ZAA-ZAZ 3
7RA-7RZ 4
7TA-7YZ 5
For example I have the value “T6C” which falls in the range of the ...
0
votes
2answers
23 views
SQL, Displaying string instead of NULL/actualy value
I'm working on an assignment and am having trouble with this question:
*Display the department name and the name of all employees plus their manager status. Status should show message ‘is a Manager’ ...
0
votes
2answers
36 views
how to insert foreign key in a table
I just want to make sure that I understand PRIMARY and FOREIGN key relation before searching for some finished answers on the internet.
Let's say this:
We have table CITY(ID-PK,CODE,NAME) and we ...
0
votes
1answer
22 views
Android - SQLite Column does not exist from certain page
I'm messing around with some SQLite databases for an Android app. I have a 'player' table with several players, and a one-to-many 'skill' table which has each player's skill points, like Shooting and ...
0
votes
1answer
29 views
Hive UDF Text to array
I'm trying to create some UDF for Hive which is giving me some more functionality than the already provided split() function.
import org.apache.hadoop.hive.ql.exec.UDF;
import ...
0
votes
1answer
28 views
Condition while update cypher query
I can't find simple solution to perform conditional update in one Cypher query.
Lets say I have Game node and the game has State property...
I want the ability to do the following:
If game.state = ...
0
votes
2answers
50 views
Best practices for managing $_GET and url strings [closed]
In my application certain query strings will perform certain class methods and I am currently using a bunch of switch statements to achieve this. For instance:
switch (true) {
case ...
2
votes
4answers
32 views
MYSQL explode search
I have a field that is build like this "1;2;3;4;8;9;11;"
If I want to search if a number is in this range I do it like this:
SELECT * FROM table WHERE [id] LIKE '[number];%' OR '%;[number];%'
Is ...
0
votes
2answers
30 views
Multiples Queries inside Loop not all work
I try to optimize a script I have so that it loads faster.
Now I have been sitting here for hours already but do not get it to work correctly.
The first part works fine, but what does not work is ...
-3
votes
1answer
54 views
Oracle: First occurrence of a particular character in a string [closed]
I have a department table. I want to display the position of occurrence of character "C" in each of the department names. What would be the query? Please help me. By the way, i am using oracle 10g.
0
votes
1answer
16 views
objectdb select where query
I attempt to select some instance using where clause
public static List<RSSItem> getRSSItem(int x1, int x2) {
EntityManagerFactory emf = DBHandler.getEmf();
EntityManager em = ...
0
votes
1answer
31 views
Use button to run MySQL delete query
I have a user account page which runs the following loop of code:
<?php foreach ( $cv_specs as $cv_spec ) : ?>
<div id="document_summary_container">
<div ...
2
votes
2answers
40 views
How can I match most specific to least specific records in SQL?
Here is the back story.
I am trying to generate a list of transactions that includes the correct commission value for a specific person. Not everyone is eligible for commission, but those who are ...
1
vote
1answer
45 views
Count result of many joins in postgresql
I have this query:
select count(*)
from seller s
left join product pr on s.id = pr.seller_id
left join special_price_discount spd on pr.id = spd.product_id ...
0
votes
2answers
49 views
Data appear at least once for every month in the last X month
My problem:
Table: trans_detail:
PhoneNo | Datetime
01234 | 2013-01-05 20:40:10
01245 | 2013-04-02 21:00:13
05678 | 2013-04-16 01:24:07
04567 | 2013-07-23 07:00:00
etc | etc
I ...
-2
votes
2answers
29 views
create a procedure/view with consecutive entries of two table [closed]
I have created two different queries as follows-
Stock In table:
mysql> SELECT stockin_id, serialno, productid, group_concat(serialno) AS sisn,
count(serialno) AS cnt FROM stockin WHERE ...
0
votes
0answers
15 views
Portable tool for simple analytics, summarization, statistics of table data
I think this wheel must have been invented a million times so I am looking for a portable (or at least running on Linux) tool that would allow to analyse table-oriented data by grouping, ...
-1
votes
2answers
23 views
my sql in() using sytax and fix a sql query
im need a small fix a query please help me, in not fixed. see on bottom, my example codes, thx for all helpers..
ny_xd_satilanlar database rows
id---uyid---toplam---sipno
01---16---1---1237777777
...
0
votes
4answers
37 views
Delete button not returning correct values to delete query
I have a table which displays data drawn from 2 different tables in mysql.The table has a delete button on each row which, when pressed, would send run a delete query which would delete the row, and ...
2
votes
1answer
45 views
SQL Query syntax - interlinking table
Just looking for a bit of help with an SQL query. I've had a bit of a search, but mostly brings up stuff about simpler joins involving two tables.
The table structure is:
table.Itineraries
...
2
votes
3answers
54 views
Multiple counts in one SQL query with grouping
I want to run a query to get a count of open incident and closed incidents grouped by year and month, the below query works fine without the grouping, but once I add the group it will not work!
...
0
votes
1answer
29 views
Running a script (multiple statements) using the Mysql gem in Ruby
I have the following query script in a file, my_query.sql
select * from my_table;
delete from my_other_table where id > 5;
select * from my_other_table;
I'm trying to execute this via the ...
0
votes
3answers
39 views
Is there a way to run MIN on an entire table in a MySQL range query?
I'm trying to find a if the minium date value for a table exists with inside a particular range value.
So for the field date_created I want to find the minimum value for the field in the entire table ...
-1
votes
2answers
34 views
Alter table with PHP and MySQL, add a column with an '@' sign
I am trying to check if a table has a certain column in it, and if not add that column to it. My code appears to work fine as long as the input value does not have an @ sign. I have tried surrounding
...
0
votes
2answers
27 views
hql many to many relation where info is contained in the join table
I have two entities Race and Player, and hibernate created 1 table race_player as Race and Players are linked by a ManyToMany relation.
I need to get the list of the races with :
the status ...
0
votes
1answer
16 views
equivalent hql query? (query with nested query in FROM clause)
what i need:
requests are made out of stages, each stage has starts and ends at a certain time.
i need to know how many requests took the same amount of time to complete (sum of delta of all child ...
0
votes
1answer
37 views
Query for a set with multiple options
I have a table with a SET-field where several of the options can be selected. I want to select all rows where at least one of the options I specify is set.
The options are: A, B, C and D
Row 1: A,B
...
1
vote
2answers
51 views
Casting an object which class is the same
I'm doing a query search on a database, that returns a list. The List is filled with variables type Object. I do an query.get(0).getClass() and it returns (something).WorkbookMappingClass. But the ...
-3
votes
0answers
14 views
Mysql Query EXISTS [closed]
Code:
$connect = mysql_connect("localhost","root","");
mysql_select_db("");
mysql_query("SELECT EXISTS * FROM 'users' WHERE 'id' = 1",$connect);
0
votes
0answers
9 views
SearchForRecord not available in MS Access 2010 Web Database
Without using code (this is a web database) how can I simulate this functionality using another means? This is intended to update all the records visible on the form.
Ideally I would use the ...



