Tagged Questions
Select is one of the most often used SQL keywords. select() is also a very important programming function for avoiding busy waits on file handles and other system activity.
99
votes
7answers
88k views
SQL Server UPDATE from SELECT
In SQL server you can insert into a table using a select statement.
INSERT INTO table(col,col2,col3)
SELECT col,col2,col3 FROM other_table WHERE sql = 'cool'
How can I update via a select as well ...
81
votes
10answers
100k views
Select columns from result set of stored procedure
I have a stored procedure that returns 80 columns, and 300 rows. I want to write a select that gets 2 of those columns. Something like
SELECT col1, col2 FROM EXEC MyStoredProc 'param1', 'param2'
...
64
votes
5answers
138k views
SQL update from one Table to another based on a ID match
I realy hope someone can help me with this. I have a databse with Account Numbers and card Numbers that I match to a file to update any card numbers to account number so I only work with account ...
49
votes
19answers
2k views
Can select * usage ever be justified?
I've always preached to my developers that SELECT * is evil and should be avoided like the plague.
Are there any cases where it can be justified?
I'm not talking about COUNT(*) - which most ...
41
votes
8answers
3k views
COUNT(*) vs. COUNT(1) vs. COUNT(pk): which is better?
I often find these three variants:
SELECT COUNT(*) FROM Foo;
SELECT COUNT(1) FROM Foo;
SELECT COUNT(PrimaryKey) FROM Foo;
As far as I can see, they all do the same thing, and I find myself using ...
38
votes
15answers
30k views
JQuery: Selecting Text in an Element (akin to highlighting with your mouse)
I would like to have users click a link that then selects the html text in another element (NOT an input). By "select" I mean the same way you would select text by dragging your mouse over it. This ...
35
votes
6answers
23k views
How to make first option of <select > selected with jQuery?
<select id="target">
<option value="1">...</option>
<option value="2">...</option>
</select>
32
votes
6answers
30k views
jQuery: Best practice to populate drop down?
The example I see posted all of the time seems like it's suboptimal, because it involves concatenating strings, which seems so not jQuery. It usually looks like this:
...
32
votes
22answers
29k views
Select all columns except one in MySQL?
I'm trying to use a select statement to get all of the columns from a certain MySQL table except one. Is there a simple way to do this?
EDIT: There are 53 columns in this table (NOT MY DESIGN)
24
votes
4answers
6k views
Difference Between Select and SelectMany
I've been searching the difference between those two but I couldn't find actually what I want. I need learn the difference when using LINQ To SQL but they all gave me standard array examples.
Can ...
22
votes
13answers
49k views
Select dropdown with fixed width cutting off content in IE
The issue:
Some of the items in the select require more than the specified width of 145px in order to display fully.
Firefox behavior: clicking on the select reveals the dropdown elements list ...
21
votes
8answers
21k views
Case-insensitive search using Hibernate
I'm using Hibernate for ORM of my Java app to an Oracle database (not that the database vendor matters, we may switch to another database one day), and I want to retrieve objects from the database ...
19
votes
2answers
8k views
Selecting text on focus using jQuery not working in Safari and Chrome
I have the following jQuery code (similar to this question) that works in Firefox and IE, but fails (no errors, just doesn't work) in Chrome and Safari. Any ideas for a workaround?
...
17
votes
3answers
9k views
MySQL performance optimization: order by datetime field
I have a table with roughly 100.000 blog postings, linked to a table with 50 feeds via an 1:n relationship. When I query both tables with a select statement, ordered by a datetime field of the ...
17
votes
7answers
2k views
What does “select((select(s),$|=1)[0])” do in Perl?
I've seen some horrific code written in Perl but I can't make head or tail of this one:
select((select(s),$|=1)[0])
It's in some networking code that we use to communicate with a server and I assume ...
16
votes
5answers
11k views
Best way to unselect a <select> in jQuery?
<select size="2">
<option selected="selected">Input your option</option>
<option>Input your option</option>
</select>
What is the best way, using jQuery, to ...
16
votes
10answers
8k views
SQL: What's the difference between HAVING and WHERE?
I must be googling in the wrong way or I'm having a stupid moment in time.
What's the difference between HAVING and WHERE in an SQL SELECT statement?
EDIT: I've marked Steven's answer as the correct ...
15
votes
9answers
47k views
How to select distinct values from datatable?
How to select distinct values from datatable in C#?
For a retrieved data from database, I need to get its distinct value in C#?
14
votes
6answers
1k views
Clicking Safari 5.1 select menu refreshes page
This is both a question and an answer. I encountered a bug today that I've never seen in all my years as a web developer, so I wanted to share the fix with anyone who might encounter the issue in the ...
14
votes
4answers
4k views
SQL join: selecting the last records in a one-to-many relationship
Suppose I have a table of customers and a table of purchases. Each purchase belongs to one customer. I want to get a list of all customers along with their last purchase in one SELECT statement. What ...
13
votes
1answer
12k views
Create a styled Dropdown like on jquery UI
On http://jqueryui.com/demos/accordion/ at the top right corner, you can see a dropdown that says "Theme: UI Lightness" by default.
I'd love to create such an interactive element in my web ...
12
votes
4answers
65k views
Best way to do nested case statement logic in SQL Server
I'm currently writing an SQL Query, where a few of the columns returned need to be calculated depending on quite a lot of conditions.
I'm currently using nested case statements, but its getting ...
11
votes
6answers
2k views
How to improve INSERT INTO … SELECT locking behavior
In our production database, we ran the following pseudo-code SQL batch query running every hour:
INSERT INTO TemporaryTable
(SELECT FROM HighlyContentiousTableInInnoDb WHERE ...
11
votes
6answers
13k views
How to select min and max values of a column in a datatable?
For the following datatable column, what is the fastest way to get the min and max values?
AccountLevel
0
1
2
3
11
votes
7answers
28k views
Hide options in a select list using jQuery
I have an object with key/value pairs of options I want to hide/remove from a select list.
Neither of the following option selectors work. What am I missing?
$.each(results['hide'], function(name, ...
11
votes
6answers
4k views
Vim replace selected text
Let's say we have a text, and I enter visual mode and select some text. How do I quickly do a search for the highlighted text and replace it with something else?
11
votes
9answers
25k views
Is there an onSelect event or equivalent for HTML <select>?
I have an input form that lets me select from multiple options, and do something when the user changes the selection. Eg,
<select onChange="javascript:doSomething();">
...
11
votes
5answers
19k views
Python, Popen and select - waiting for a process to terminate or a timeout
I run a subprocess using:
p = subprocess.Popen("subprocess",
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
...
10
votes
6answers
145 views
Taking the second last row with only one select in SQL Server?
I was trying to select the second last row with SQL Server. So I wrote a query like this:
SELECT TOP 1 * From Cinema
WHERE CinemaID!=(SELECT TOP 1 CinemaID
FROM Cinema
...
10
votes
2answers
413 views
Detect whether browser shows <select multiple> as modal dialog
Is there any way to use JavaScript to detect whether a given browser renders a focused <select multiple> element as a popup or solely as an inline box?
On some platforms, such as the Android ...
10
votes
5answers
260 views
Explicitly select items from a Python list or tuple
I have the following Python list (can also be a tuple):
myList = ['foo', 'bar', 'baz', 'quux']
I can say
>>> myList[0:3]
['foo', 'bar', 'baz']
>>> myList[::2]
['foo', 'baz']
...
10
votes
1answer
204 views
Select 10 times slower when reversing order
Why would this select, call it A, (0.02406s):
select * from char_kills
where rid_first <= 110 and rid_last >= 110
order by kills desc
limit 500;
be 10 times slower than when sort order is ...
10
votes
5answers
293 views
Pros / Cons of MySql JOINS
This is a question that has bugged more for a few weeks now and I haven't got around to asking it to you guys.
When I'm selecting data from multiple tables I used to use JOINS a lot and recently I ...
10
votes
3answers
527 views
This SELECT query takes 180 seconds to finish
UPDATE:
Just to mention it on a more visible place. When I changed IN for =, the query execution time went from 180 down to 0.00008 seconds. Ridiculous speed difference.
This SQL query takes 180 ...
10
votes
4answers
7k views
How to get label of select option with jQuery?
<select>
<option value="test">label </option>
</select>
The value can be retrieved by $select.val().
What about the label?
Is there a solution that will work in IE6?
10
votes
5answers
8k views
Hide select option in IE using jQuery
Currently I am using jQuery to hide/show select options using following code.
$("#custcol7 option[value=" + sizeValue + "]").hide();
This works fine in Firefox, but doesnt do any good in other ...
10
votes
2answers
3k views
What are the differences between poll and select?
I am referring to POSIX standard of select and poll system C API calls?
10
votes
18answers
4k views
quick selection of a random row from a large table in mysql
What is a fast way to select a random row from a large mysql table?
I'm working in php, but I'm interested in any solution even if it's in another language.
9
votes
4answers
933 views
Can I apply the required attribute to <select> fields in HTML5?
How can I check if a user has selected something from a <select> field in HTML5?
I see <select> doesn't support the new required attribute... do I have to use JavaScript then? Or is there ...
9
votes
1answer
245 views
Get results from mysql based on latitude longidude
I have a mysql Database and 2 tables let's say clients and schools. Now each table has columns latitude and longitude. And I need do make a SELECT for example from second table where schools are in a ...
9
votes
4answers
4k views
How to get Top 5 records in SqLite?
I have tried this which did not work.
select top 5 * from [Table_Name]
9
votes
2answers
6k views
MySQL - How to select data by string length
SELECT * FROM table ORDER BY string_length(column);
is there a mysql function to do this (of course instead of "string_length")?
thank you!
9
votes
7answers
236 views
SQL “GROUP BY” issue
I'm designing a shopping cart. To circumvent the problem of old invoices showing inaccurate pricing after a product's price gets changed, I moved the price field from the Product table into a ...
9
votes
5answers
11k views
mysql select sum group by date
Quick question, I have the following table
+-------------+---------------------+
| total | o_date |
+-------------+---------------------+
| 35 | 01-11-2009 19:32:44 |
| ...
9
votes
4answers
17k views
How can I create an editable dropdownlist in HTML?
I'd like to create a text field with a dropdown list that lets the user to choose some predefined values. The user should be albe to type a new value or to select a predefined one from a dropdown ...
8
votes
2answers
83 views
Mysql: SELECT * FROM … without one field
For duplicating an entry I would like to use the following syntax:
insert into TABLE select * from TABLE where ...
However, as the first column is an auto-increment primary key, this value must be ...
8
votes
2answers
6k views
Rails 3 - select with Include?
I've been looking for how to do a select with include in Rails 3 - I have a nested example:
@items = Item.where("fulfilled = ?", true).includes({:order=>[:supplier, :agent]}, :manufacturer)
This ...
8
votes
7answers
2k views
How to iterate through a fd_set
I'm wondering if there's an easy way to iterate through a fd_set? The reason I want to do this is to not having to loop through all connected sockets, since select() alters these fd_sets to only ...
8
votes
4answers
4k views
How to select distinct field values using Solr?
I would like to do the equivalent of this SQL but with Solr as my data store.
SELECT
DISTINCT txt
FROM
my_table;
What syntax would force Solr to only give me distinct values?
...
8
votes
3answers
350 views
Select only some items from a list in LaTeX
I have a LaTeX document which is basically one big enumerate environment, with a few hundreds of items. I want to be able to issue a command like
\printitems{2,5,12,45-48}
which will output only ...