0
votes
8answers
123 views
EASY PHP question?
HI Guys,
I have following problem. I'm trying to connect from my Iphone app to a php site, to access the mySql db, to get the right information.
This is my code:
<?php
…
0
votes
12answers
100 views
Select * vs Specifying Column Names [closed]
Possible Duplicate:
Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc.
What are the performance differences between using SELECT * FROM SOMETABLE ver …
5
votes
6answers
80 views
How to turn this MySQL SELECT query into a DELETE query?
I want to delete certain items from the database. I have the following query:
SELECT *
FROM sheets, entries
WHERE entries.sheetID = sheets.id AND sheets.clientID = 13
This wor …
0
votes
1answer
13 views
Non framework implementation of a hierarchical drop down for Firefox.
I need a hierarchical drop down <select><option/></select> for use within a browser, preferably Firefox. I'd rather not use a framework like jQuery. Please spar …
2
votes
3answers
66 views
HTML <br /> inside a Select Box
I would like to know if there is anyway I can divide an item on two line inside a select box.
One of the values of my select box is two long to fit in my div.
0
votes
3answers
33 views
How to do: sum columnB where columnA is XYZ - in Excel?
Hi
I have a bunch of columns and some columns which are values I need to add.
Lets say I want to sum columnB (which could be $) where column A is banana, how do I do that?
Thing …
0
votes
3answers
26 views
Rails, update 2nd select with static data from partial, based on initial select.
I have a rails form where the end user is going to drop down a list of categories, select a category. I need this selection to update the next select drop down. The issue is that …
0
votes
2answers
40 views
linq query from more tables
public ActionResult myItems() {
var dataContext = new RecordsDataContext();
MembershipUser myObject = Membership.GetUser();
string CurrentUserName …
1
vote
1answer
38 views
SELECTing user with earliest time and joining with other data
I have an Oracle database where I'm trying to select a user field from the earliest row (based on a time field) where certain conditions are met, and I don't know how to do it. He …
2
votes
3answers
46 views
jQuery: How to select the values from the table’s column based on tables header only
Hello,
I have a table with header ID. I need to select all the fields under this header.
I don't have access to the source code and no classes are used in this table.
Any idea on h …
0
votes
4answers
64 views
Selecting one element with multiple selectors in Jquery
Hi All,
Im kinda new to Jquery, so this might be easy, then again i cant seem to find anything on Google. So here goes.
I basically have this:
<div>
<div id="row1" …
0
votes
3answers
50 views
SQLite - SELECT over multiple entries of the same data/column
I am a bit new to SQLite, and I am having a slight dilemma about my database design. I'll explain. Suppose you and your friends use a number of different nicknames on the Internet …
0
votes
2answers
31 views
jQuery, Filter on Table
Hello,
I have 1 problem , I've taken one jquery plugin (filter on table).
This is URL : http://gregweber.info/projects/demo/flavorzoom.html
But I have a little bit different c …
3
votes
2answers
95 views
TSQL SELECT then UPDATE in one transaction, then return SELECT
I am really having trouble with a query in my ColdFusion application (backended to MS SQL 2008). I keep getting DB deadlock errors on this transaction:
<code>
<cftransac …
-1
votes
2answers
107 views
A select question
There are groups like this;
USER_ID SEQ_ID NAME
1 2 Armut
1 3 Elma
1 4 Kiraz
2 1 Nar
2 2 Uzum
4 3 Sheftali
4 …
