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).
213
votes
8answers
135k views
T-SQL: Selecting rows to delete via joins
Scenario:
Let's say I have two tables, TableA and TableB. TableB's primary key is a single column (BId), and is a foreign key column in TableA.
In my situation, I want to remove all rows in TableA ...
73
votes
5answers
5k views
How can an SQL query return data from multiple tables [closed]
I would like to know the following:
how to get data from multiple tables in my database?
what types of methods are there to do this?
what are joins and unions and how are they different from one ...
71
votes
7answers
40k views
What is the maximum possible length of a query string?
Is it browser dependent? Also, do different web stacks have different limits on how much data they can get from the request?
65
votes
7answers
32k views
save (postgres) sql output to csv file
what is the easiest way to save PL/pgSQL output from a PostgreSQL database to a csv file? I'm using PostgreSQL 8.4 with pgAdmin III and psql plugin where I run queries from.
thanks!
martin
65
votes
9answers
52k views
How can I view live MySQL queries?
I am just wondering if its possible to trace MySQL queries on my linux server as they happen?
For example I'd love to set up some sort of listener, then request a web page and view all of the queries ...
63
votes
10answers
47k views
Multiple Updates in MySQL
I know that you can insert multiple rows at once, is there a way to update multiple rows at once (as in, in one query) in MySQL?
Edit:
For example I have the following
Name id Col1 Col2Row1 ...
56
votes
4answers
42k views
SQL Select only rows with Max Value on a Column
I have this table for documents (simplified version here):
+------+-------+--------------------------------------+
| id | rev | content |
...
39
votes
4answers
22k views
How to get Top 5 records in SqLite?
I have tried this which did not work.
select top 5 * from [Table_Name]
24
votes
8answers
18k views
How to randomly select rows in SQL?
I am using MSSQL Server 2005. In my db, I have a table "customerNames" which has two columns "Id" and "Name" and approx. 1,000 results.
I am creating a functionality where I have to pick 5 customers ...
24
votes
7answers
52k views
23
votes
2answers
7k views
Rails 3 + activerecord, the best way to “mass update” a single field for all the records that meet a condition
In rails 3, using activerecord, is there a single-query way to set the :hidden field to TRUE for all records that meet a condition ... say, for example, :condition => [ "phonenum = ?", ...
22
votes
4answers
18k views
Remove duplicate rows in MySQL
I have a table with the following fields:
id (Unique)
url (Unique)
title
company
site_id
Now, I need to remove rows having same title, company and site_id. One way to do it will be using the ...
22
votes
2answers
26k views
Find objects between two dates MongoDB
I've been playing around storing tweets inside mongodb, each object looks like this:
{
"_id" : ObjectId("4c02c58de500fe1be1000005"),
"contributors" : null,
"text" : "Hello world",
"user" : {
...
21
votes
2answers
7k views
Rails 3 UTF-8 query string showing up in URL?
I have a search query form on my home page (/)
<% form_tag(search_path, :method => :get) do %>
<%= text_field_tag 'query' %>
<%= submit_tag "Search", :name => nil%>
<% ...
13
votes
2answers
2k views
NHibernate and Repository pattern
What is the recommended approach to take with Nhibernate + Repository pattern?
There are so many different articles and opinions around that I am not sure what path to take. Take this lengthy ...
11
votes
5answers
7k views
How does a PreparedStatement avoid or prevent SQL injection?
I know that PreparedStatements avoid/prevent SQL Injection. How does it do that? Will the final form query that is constructed using PreparedStatements will be a string or otherwise?
11
votes
3answers
3k views
How does the HyperLogLog algorithm work?
I've been learning about different algorithms in my spare time recently, and one that I came across which appears to be very interesting is called the HyperLogLog algorithm - which estimates how many ...
9
votes
5answers
11k views
Why doesn't Oracle SQL allow us to use column aliases in GROUP BY clauses?
This is a situation I'm generally facing while writing SQL queries. I think that writing the whole column (e.g. long case expressions, sum functions with long parameters) instead of aliases in GROUP ...
9
votes
6answers
159 views
Vague count in sql select statements
I guess this has been asked in the site before but I can't find it.
I've seen in some sites that there is a vague count over the results of a search. For example, here in stackoverflow, when you ...
9
votes
3answers
1k views
Is it possible to define a local function in a TSQL query?
I have a complex expression calculating a value from a date that I have to use on multiple date columns.
Can I define a temporary local function in my query to avoid copy and pasting this expression. ...
8
votes
7answers
202 views
SQL query is much faster if I create indexes
Is it ok if I create like 8 indexes inside a table which has 13 columns?
If I select data from it and sort the results by a key, the query is really fast, but if the sort field is not a key it's much ...
8
votes
5answers
491 views
Concatenating ActiveRecord::Relations queried through polymorphic association
My application has a Job model. Every job in the system has a contact. This is like a person you would call up if you need to ask a question about the job. A contact can either be a client or an ...
7
votes
1answer
436 views
REGEX Match integers 6 through 10
I want to find integers any integers between 6 and 10. I've tried:
[6-10]{1,2}
but this throws a mysql error (this is for a mysql query). How do you match numbers between 6 and 10?
7
votes
3answers
10k views
Drop all tables
Heya guys simple question, how do I drop all tables in Windows mysql, using command prompt? The reason I want to do this is that our user has access to the database drops but no access to recreating ...
7
votes
3answers
5k views
Querying array elements with Mongo
how can i query the smoothies that has apple in it? thanks! (below is a collection with 3 documents)
_id => 1
name => 'best smoothie'
ingredients => Array
(
[0] => apple
...
6
votes
2answers
100 views
Select only if empty
I have a table of users and a table of things they have on a list -
to show all users who have items on a list I can join the two tables users and user_lists on user_id
e.g.
select u.emailaddr, ...
6
votes
2answers
886 views
(need advice) Talk to MySQL server database from my Android App
I am starting my thesis which is an app for android. This app is based on a web platform I had created.
The part where I need advice is: which is the most efficient way to pull data from a MySQL ...
6
votes
4answers
16k views
Rails 3 find all associated records has_many :through
I would like to list all posts that are connected with some specific category and classroom.
I have:
class Post < ActiveRecord::Base
has_many :category_posts
has_many :categories, :through ...
5
votes
5answers
8k views
SQL Row_Number() function in Where Clause without ORDER BY?
I found a bunch of questions on this topic with nice solutions but none of them actually deal with what to do if the data is not to be ordered in one specific way. For instance, the following query:
...
5
votes
5answers
188 views
Should query languages have priority of operator OR higher than priority of AND?
Traditionally most programming languages have priority of AND higher than priority of OR so that expression "a OR b AND c" is treated as "a OR (b AND c)". Following that idea search engines and ...
5
votes
3answers
5k views
MongoDB query multiple collections at once
users
{
"_id":"12345",
"admin":1
},
{
"_id":"123456789",
"admin":0
}
posts
{
"content":"Some content",
"owner_id":"12345",
"via":"facebook"
},
{
"content":"Some other content",
...
5
votes
3answers
6k views
How to query mongodb with DBRef
suppose I have the following datastructure:
var user = {_id: 'foo', age: 35};
var post = {_id: '...', author: {$ref: user, $id: 'foo'},...};
How can I query all posts which references user[foo]? I ...
5
votes
3answers
897 views
SQL INNER QUERY returns more than one value in an UPDATE query
I have a table to be updated using records of another table and I am doing this to bring over information from one system (database) to another.
The scenario is bit complex, but I desperately need ...
5
votes
3answers
8k views
cakephp find all condition AND OR
Below is my condition:
'OR' =>
array(
'AND' => array(
array('EventCompetitor.is_black' => 1),
...
5
votes
4answers
10k views
Query SQL Server Database from native iOS Application
I am working on an in-house, iOS app that will need read-only access to a SQL Server with multiple databases. I know the stock answer here is "write some web services", but I'd like a solution that is ...
5
votes
2answers
999 views
SQL to get friends AND friends of friends of a user
My MySQL tables structure is like this.
USER
int id
varchar username
FRIEND_LIST
int user_id
int friend_id
For each friend relationship I insert 2 records in FRIEND_LIST.
If user 1 is friend of ...
4
votes
2answers
3k views
django filter with list of values
I'm sure this is a trivial operation, but I can't figure out how it's done... How can I create a django query for a list of values.
There got to be something smarter than this:
ids = [1, 3, 6, 7, 9]
...
4
votes
3answers
154 views
Is there a way to specify table name as a string?
Let us say I have a query like this:
SELECT * FROM
(
SELECT * FROM
(
SELECT * FROM DB.dbo.Table
)
INNER JOIN DB.dbo.Table ON ...
I am running this query multiple times with different ...
4
votes
8answers
9k views
How can get unique values from data table using dql?
I am having a table in which there is a column in which various values are stored.i want to retrieve unique values from that table using dql.
Doctrine_Query::create()
...
4
votes
6answers
2k views
mysql structure for comments and comment replies
I've been thinking about this one for quite some time now, I need a way to add replies to comments in the database but I'm not sure how to proceed.
This is my currently comment table (doesn't say ...
4
votes
5answers
754 views
Question about joins and table with Millions of rows
I have to create 2 tables:
Magazine ( 10 millions of rows with these columns: id, title, genres, printing, price )
Author ( 180 millions of rows with these columns: id, name, magazine_id )
.
Every ...
4
votes
2answers
363 views
MongoDb $and operator with geospatial queries
I'm working on a system in Java, part of which renders expressions from an internal representation to a MongoDb query. I render "AND" expressions the same way I render "OR" expressions. So if I have ...
4
votes
1answer
3k views
How to get difference between 2 columns
I have a query that is producing something like this:
StartTimestamp | EndTimestamp
================================
100 | 450
--------------------------------
150 | 500
...
3
votes
2answers
7k views
Select rows not in another table, SQL Server query
Subject table
CREATE TABLE [dbo].[BS_Subject](
[SubjectID] [bigint] IDENTITY(1,1) NOT NULL,
[DepartmentID] [bigint] NOT NULL,
[SubjectName] [varchar](50) NOT NULL,
...
3
votes
1answer
2k views
What SQL data type does Oracle assign to “count(*)”?
What SQL data type does Oracle assign to count(*) in a query like select count(*) from table? Does this depend on the count size?
3
votes
1answer
98 views
Local Database with Scheme
I want to construct a local database for my program which has to be filled with user preffered settings, searched websites and so on.
But what i could find on internet(google and this website) is ...
3
votes
4answers
933 views
Select rows with Max Value grouped by two columns
I have seen quite a few solutions on this kind of problem (esp. this one SQL Select only rows with Max Value on a Column), but none of these seem to be appropriate:
I have the following table layout, ...
3
votes
3answers
48 views
Mysql test if 2 users have a conversation
I am making a message system, much like on facebook. When a user send a new message to a person from their profile, instead of from within messages, i want to check the database if they already have a ...
3
votes
1answer
41 views
Why is my union of two queries not ordering correctly?
(SELECT `size`, `type` FROM `table` WHERE `type`='a' ORDER BY `size` ASC)
UNION ALL
(SELECT `size`,`type` FROM `table` WHERE `type`='b' ORDER BY `size` DESC)
Why isn't this query working as I ...
3
votes
1answer
439 views
How can I sort a Meteor collection by time of insertion?
I am working on my first project using Meteor, and am having some difficulty with sorting.
I have a form where users enter aphorisms that are then displayed in a list. Currently the most recent ...

