Select is a SQL keyword used to query data. 'select()' is also a programming function for triggering code based on file handle or other system activity. Not to be confused with the HTML tag ``.

learn more… | top users | synonyms

1
vote
2answers
25 views

Displaying an image when selecting an option from a drop down list

I'm trying to change an image upon selection of an option in a drop down list: function volvoCar() { var img = document.getElementById("image"); img.src="volvo.png"; return false; } And so on for ...
0
votes
3answers
27 views

Javascript - Get Select(Value) to evaluate

There are 10 different pins that I need the status for. <select> <option value="on" id="p1StatusOn" name="pin1Status">on</option> <option value="off" id="p1StatusOff" ...
1
vote
2answers
18 views

Generate form based on form selection

I have a dropdown selection box to generate another select box based on the selection of the first box. I have put an example below. <form action="" method="type"> <select ...
0
votes
1answer
8 views

Mysql select where polygon contains point always false

I have tried various functions like MBRWithin, MBRContains, Intersects, Contains (all of them found in a plenty of posts around here) but no luck yet. This is the simplified query: SELECT * FROM ...
1
vote
2answers
39 views

I need the closest smaller value in mysql table

I'm making experience points based rank system for my mmorpg. Let's say I have 2 tables, table1: username - exp table2: rankname - exp each rank require a specific amount of exp to get promoted ...
0
votes
1answer
37 views

Dropdown onchange does not change value for second dropdown [closed]

I'm learning Javascript and trying to do the following: In my first dropdown I want to show all the continents. In my second dropdown I want to show all the countries. For example: First dropdown: ...
-1
votes
1answer
9 views

Validate multiple select list

I've to validate a form like this with jquery validate plugin: <form class="myform" <select name="Input" id="input1"> <option value="DO0" opt_numAdults="2" opt_numChilds="0" ...
0
votes
2answers
25 views

Counting Combinations of rows/columns across one table

I have a query I am having trouble wrapping my head around. What I'm trying to do is come up with a report that will have rows of the major(Accounting, Business, etc) with columns of the type of ...
3
votes
2answers
31 views

Multiple SELECT with NOT IN - inner Select statement returns empty and the whole SELECT returns empty

There are two table TABLE1 and TABLE2 in which there is a common field ID. I wanted to retrieve values from TABLE2 that doesnot match in TABLE1 based on ID value. select * from TABLE2 where subject = ...
1
vote
0answers
25 views

mysql - Latest record with matching value and having the latest be positive

I am posting for the first time. I have been trying to figure out the issue with this report. In this report,i want to show the serial numbers for the products that were sold and not returned (+ not ...
0
votes
1answer
21 views

JQuery: Access all Select Tags that of of type multiple

I have $("body select").method() to apply the method on all select tags. How can I specify multiselect or single select with jquery? I am looking into something like $("body select[multiple='single'") ...
0
votes
4answers
26 views

Selecting all data from all columns in a MySQL Database

Say I have the following data in a database DB1: Table1 id int (50) attribute varchar(255) Total Rows : 6550 Table2 id int (50) attribute varchar(255) attribute1 varchar(255) Total Rows : 10550 ...
0
votes
3answers
30 views

how to make options based on the current year

I want to have options of this year and next year, but I can't figure out how to integrate the JavaScript variable into the value = "" and the text inside the option tags. This code demonstrates what ...
0
votes
1answer
17 views

html option select without javascript

I've been trying to code a simple option select that would display a div under it after a selection is made. I have completed this action using javascript and I am now trying to cater the users that ...
2
votes
1answer
41 views

joining records from 3 tables

i tried to join records from two tables which have the following schema users ---- name phone email sales ---- seller_id buyer_id amt date here is my sql Select sales.amt, sales.date, ...
0
votes
1answer
17 views

Select using -1 in tinyint field on MYSQL

I have written the following code to filter the people who wants a newsletter via post or e-mail: Sub loadoverviewnewsletter() Dim sql As String Dim sql1 As String If ...
0
votes
1answer
25 views

SQL - Select multiple users from a table asoiciated with multiple options AKA Relations division

The problem is that I have a table where users have certain options "active" this is a representation of the table: USER | OPTION ------------- 1 | A 1 | B 1 | C 2 | A 2 | D 2 | E 3 ...
0
votes
2answers
21 views

CSS style issue in Mozilla Firefox

I have this example: http://musicexploration.net/test-page How I can make the first select field to look like in Chrome? ( Without the right arrow and select instrument text in de middle ) Thank ...
0
votes
2answers
51 views

Questions about SQL query

I need to select exam results of students in class 7A, but need to look into another table (student_profile) to identify students in 7A (identify by student_id). I wonder which of the following method ...
0
votes
1answer
21 views

angular select doesn't work without ng-model

Does anyone know why in Angular, the select selector doesn't work without the ng-model? <select ng-model="bla_bla" ng-options="obj.value as obj.key for obj in languages"/> <select ...
0
votes
1answer
25 views

Angular - Use filter on ng-options to change the value displayed

I have an array of prices (0, 0.99, 1.99... etc) that I want to display in < select>. I want to use Angular's ng-options like this <select ng-model="create_price" ng-options="obj for obj in ...
0
votes
2answers
31 views

Rails - order by, with grouped_collection_select

This input select box shows a list of issues based on the selection of another input select box that displays the values in my School.rb model. But, this lists the issues by the issue_id. I need it to ...
0
votes
0answers
47 views

Functional difference between alias = expression and expression as alias [closed]

Recently while reading a post on Derek Dieter's SQL Blog I noticed that the way he wrote his SELECT statements was completely reversed to my own (at least in this post). The sample below shows how he ...
0
votes
0answers
23 views

Select Module: Encountering a TypeError with socket server. [Python]

The problem lies directly with the select.select line in my socket server. r_list, w_list, x_list = select.select(U_Connections + [ss], Username_List, []) where: Username_List = [] U_Connections = ...
1
vote
1answer
22 views

select() socket call CPU consumption

If I have the following code with select call and suppose the socket fds are not ready for I/O for most of the time, will the thread take CPU or will it sleep and let the other thread do the job. Is ...
0
votes
1answer
16 views

select() call with infinit timeout

I want to use the select call to send() data from my write socket fd. I am going to ue the non blocking socket implemenation. Which implementation is better. while(u4BytesSent < u2BufLen) { ...
0
votes
1answer
19 views

Cassandra 1.2 CQL QERY SET

I have a table in Cassandra containing name, item. Using the following data types: name is text, item is set. f.e. I have these entries: name | item a | {item1, item3} b | {item2, item3} c ...
-2
votes
2answers
24 views

select from table values by data from another table

I have 2 tables PRODUCTS id | property1 | property2|property3 |category --------------------------|-------------------- 1 | trousers | red |UK | 1 2 | shoes | blue |USA ...
0
votes
3answers
31 views

How to select records only when the SUM(field) from a separate table > 0 using MAX to identify the most recent 'field'

I have been battling with this query for over a day now. My SQL is not amazing, so that might explain why! Anyway, I'd really appreciate if anyone could clarify what I'm doing wrong here. CREATE ...
0
votes
2answers
29 views

Sql Returning null from second select

I have a query like this select * from Cars where car_id!=(Select car_id from reservation where reservation_date between '2013-05-13' and '2013-05-15') I want to take car_id='' if nothing between ...
0
votes
1answer
30 views

How to select a specific tag content inside li tag?

<ul id="listQ"> <li><txt>part01</txt><from>part02</from></li> <li><txt>part01</txt><from>part02</from></li> ...
1
vote
1answer
22 views

Select values based on the values of the first column

I have a database that looks something like this: Name -Finding One -Finding Two -Finding Three John -Low Cost John -Accessible -Low Cost Michael -High Cost -Good ...
0
votes
0answers
33 views

MySQL SELECT into Fieldset .. each Row = Another Fieldset

Have a user submitting a form http://bootply.com/61703 Posting the entries to a single MySQL table on a button submit Where each input = a column of one row.. And would like to load another page ...
0
votes
1answer
45 views

SELECT from one table, JOIN on another table, ORDER BY a third table?

I have three tables for a forum application I am creating: boards - represents a collection of posts, is_deleted boolean posts - represents some text as well as a collection of comments comments - ...
0
votes
1answer
26 views

How to process onchange events for select elements which is dynamically created using javascript?

I have to create a few "select" elements in a html file dynamically. And I also intend to create the same amount "select" elements according to the value of the former created "select" elements. Thus ...
0
votes
1answer
53 views

php pass value to multiple select queries

I'm having trouble passing a variable between MySQL queries on the same page. Maybe someone can advise what I'm doing wrong. I'm new to PHP/MySQL, but the answer seems very easy, I just don't see it. ...
2
votes
4answers
81 views

SQL complicated query

I have a following problem with my SQL query. I was managed to successfully execute about 15 of them but this one makes me sick. It's even hard to translate but probably you will understand. Show ...
0
votes
2answers
33 views

Query in a LIKE-TREE table

I have a table with the following columns: idCat, idParent, Des idCat is autoincremented, Des is for Description and idParent can be "0" if the record is a parent or it can have "idCat" value of a ...
-5
votes
2answers
55 views

mysql selecting rows between specific values only [closed]

I have a table 'params' with following structure id| name | code | item | spec | date -------------------------------------------- 22| dddd | 24 | end | ll1 | ...
0
votes
1answer
21 views

Select all content in div when clicked?/Resize textbox to fit text?

I've been searching around now for a while and I can't seem to find the answer I'm looking for. I'm making a little box, which has the width of the text inside it that, when clicked, selects all ...
0
votes
1answer
25 views

filtering column values while using SELECT in MySQL

I have a mysql table with a column Doc TEXT. the column contains HTML as content. I want to select the column with filtered to get only URLs from the content. column content contains A HREF="(.*)" . ...
0
votes
0answers
42 views

DELETING duplicate records with different ID

I'm struggling with a query, and I have searched the sourceCode and Google trying to find the solution but no luck. I have a table that consists of 5 unique IDs and some data. The problem is that ...
0
votes
2answers
50 views

How can I rename all columns of a table at select?

I have two tables with 21 identical column name, but different data. I want to join the tables, but access both columns (row["phase1"], row["other_phase1"]): How can I rename/alias all of them in the ...
1
vote
1answer
32 views

jQuery Mobile Select input text on focus

I'm using jQuery mobile, I now want to make an input text field to be highlighted when tapped. I'm using this: $(document).ready(function() { $('.highlight').focus(texty_focus); }); function ...
0
votes
2answers
27 views

Underscore Snippet

In my workflow I have a lot of projects were I have to put underscores in betwwn every word in a sentence. Is there a snippet I could build in sublime text 2 to do this for me with a tabtrigger of ...
-2
votes
1answer
16 views

How to select textview from android 4.1 only by long press it but not by double click [closed]

when set android:textIsSelectable="true" , I can select text by double click or long press it, but I only want to long press to select text from textview, not by double click. This is because I ...
0
votes
1answer
12 views

Using alias in the same select

Once I set an a column name like this SUM(someColumn) AS [ColumnName], how can I use it afterwards ? Let's say I build a query like this : SELECT SUM(foo.A + foo.B + foo.C + foo.D + foo.E) AS ...
1
vote
2answers
32 views

Selecting multiple rows from two tables in one go in MySQL

I have two tables: products (id,title,price) types (id,idProduct,type,additionalPrice). I want to make a list that shows all the products and their subsequent types in the most efficient way ...
1
vote
4answers
38 views

SQL complex select statement in store procedure

I have 3 tables in my database; InfoTable, FriendTable, UsersTable and their Fields are as follows InfoTable --------- Uid int, Username varchar(256), Address varchar(256), FriendTable ...
2
votes
4answers
142 views

SELECT COUNT(foreign ID) for each row in datatable

I have datable where I store my dailyContent selection. This is different for each day. When I select more then one day, then I need to return items, which are the same for all days. I have tried ...

1 2 3 4 5 226