0
votes
4answers
35 views
Select From One Table And Include Sum Value From Another
My title is terrible but I'm having a hard time wrapping my head around this. I have two tables. Links and Votes. Links contain info about links submitted and the usual jazz, vo …
0
votes
1answer
28 views
Most efficient way to insert two rows that depend on each other.
I have a site that is essentially a collection of links. A mysql database which stores users, links and votes. My links table has two foreign keys, user_id and vote_id. When a l …
0
votes
1answer
33 views
Is it possible to order_by with a callable?
DUPLICATE: http://stackoverflow.com/questions/981375/using-a-django-custom-model-method-property-in-orderby
I have two models; one that stores posts and another that stores votes …
-1
votes
4answers
97 views
What database APIs in C++ and C# are equivalent to JDBC in Java?
I have not done database programming in C++ and C# before, but did some in Java. Now I am asked to figure out the options to do it in C# or C++ (not sure which one yet). We may use …
7
votes
5answers
2k views
How do you sort a tree stored using the nested set model?
When I refer to nested set model I mean what is described here.
I need to build a new system for storing "categories" (I can't think of better word for it) in a user defined hiera …
1
vote
2answers
35 views
Abstracting a Foreign Database reference
I want to query database two from database 1. Easy, right?
SELECT * FROM database2.dbo.TableName
Sure. But what if the actual name of database2 changes? I have to go back and cha …
2
votes
5answers
51 views
How to Represent Rules using a MySQL Table?
I have a table of 100,000s of USERS (name, age, gender, phone, company, street, city, state, country, zipcode, etc).
I also have a table of thousands of PROMOTIONS which are offer …
1
vote
9answers
70 views
SQL query to get all the data in specific range.
I have a table(offer) with three columns, id, product_id and price.
offer
-----
id (integer)
product_id (integer)
price (decimal)
I wanted to fire a SQL query which will re …
1
vote
2answers
42 views
How do you select all columns, plus the result of a CASE statement in oracle 11g?
I want to select *, and not have to type out all individual columns, but I also want to include a custom column with a case statement. I tried the following:
select *, (case when …
0
votes
1answer
19 views
Codeigniter WHERE on “AS” field
I have a query where I need to modify the selected data and I want to limit my results of that data. For instance:
SELECT table_id, radians( 25 ) AS rad FROM test_table WHERE rad …
0
votes
1answer
19 views
categorize image and video files as albums
I want to categorize image and video files as albums .My application is developed in asp.net and sql2005.Now i am uploading the image s and videos .My aim is to the user can create …
4
votes
4answers
330 views
How can I count the total number of MySQL queries used per page?
Is there a built-in function in PHP or MySQL that will provide the total number of MySQL queries used on a page? I've seen on a lot of sites (mainly forums) they have a message at …
1
vote
5answers
280 views
MySQL: Retrieving count of records from a particular time frame
So what I'm trying to do is a bit tricky. I'm trying to come up with a sql query that will be able to return counts for specified time frames. So I have a table 'v'. Here is som …
0
votes
1answer
22 views
MySQL count problem
I have a table course:
CREATE TABLE course
(COURSE_NO NUMERIC(8,0) NOT NULL
,DESCRIPTION VARCHAR(50)
,COST NUMERIC(9,2)
,PREREQUISITE NUMERIC(8,0)
,CREATED_B …
5
votes
6answers
328 views
Hibernate or JDBC
I have a thick client, java swing application with a schema of 25 tables and ~15 JInternalFrames (data entry forms for the tables). I need to make a design choice of straight JDBC …
