2
votes
2answers
40 views

String seems to end query

I am storing user's liked pages from facebook in my postgres database, one of them being Sinead O'Connor's page. It seems like when it gets to the apostrophe, it terminates the query beacuse the ...
0
votes
2answers
53 views

The sample from the database by date using only the day and month. Not taking into account the year

I have a database, let's call it "mydb". The database "mydb", there is a table "mytable". In the table "mytable", three fields: text (type char), start_date (type DATE) and end_date (type DATE). I ...
0
votes
1answer
30 views

Performance Impact of turning Columns into Rows

I'm planning to use JavaDB (Derby) or PostgreSQL. I have the following problem: I need to store a large set of vectors. Currently all vectors contain a fixed number of elements. Hence the appropriate ...
0
votes
2answers
35 views

PostgreSQL: Get the second to last MAX(date)

I have two views in PostgreSQL. One to get the most recent total amounts of each organization. The other view is to get the second to last most recent total amounts of each organization and here is ...
0
votes
0answers
16 views

activerecord uncached method not working for postgresql

I have a rails app that uses postgresql and I want to temporarily disable query caching for the purpose of testing my query times. The following solution works for sqlite database, but i have been ...
1
vote
3answers
45 views

Join mutiple tables with date

I have three tables **Table A** +-----------------+ | Name | ID | +------------------ | A1 | 1 | | A2 | 2 | | A3 | 3 | +------------------ **Table B** ...
0
votes
1answer
36 views

Creating a view SQL

These are the tables I have to work with. customer (cust_id, name, city, postcode) order (order_id, cust_id, date) orderline (order_id, video_id, quantity) video (video_id, description, price, ...
1
vote
2answers
36 views

Formulating an SQL statement

I need help formulating an SQL statement.The tables are video(video_id, description, price, category_id) category(category_id, description) The query needs to produce a summary list showing the ...
1
vote
2answers
38 views

SQL Union without duplicate values for one specific field

There're 3 tables DEVELOPER, MANAGER and PROJECT: create table DEVELOPER(id int(4), lastname varchar(40), project_id int(4)); create table MANAGER(id int(4), lastname varchar(40), project_id ...
0
votes
1answer
21 views

“ProgrammingError: syntax error at or near” when executing query in python using psycopg2

I am running Python v 2.7 and psycopg2 v 2.5 I have a postgresql database function that returns a sql query as a text field. I am using the following code to call the function and extract the query ...
0
votes
3answers
57 views

How can I select one row of data per hour, from a table of time stamps?

Excuse me if this is confusing, as I am not very familiar with postgresql. I have a postgres database with a table full of "sites". Each site reports about once an hour, and when it reports, it makes ...
0
votes
2answers
22 views

Append X amount of results from one query to X amount of results from another (with no foreign key join)

This query brings back results like this: select distinct date from dwh.product_count April, 2013 March, 2013 February, 2013 January, 2013 I'd like to append however many results ^that^ brings back ...
1
vote
1answer
34 views

Convert a nested subquery into normal query

I have problem with following query where in which the nested query should be converted to normal query: select count(*) as count, TO_CHAR(RH.updated_datetime,'DD-MM-YYYY HH:MI:SS') as date, ...
1
vote
3answers
74 views

Improving Subquery performance in Postgres

I have these two tables in my database Student Table Student Semester Table | Column : Type | | Column : Type | |------------|----------| ...
0
votes
0answers
32 views

No PostgreSQL link opened yet

I am completly new to databases and am trying to make a simple query to a postgreSQL database. Now the problem is that I don't really understand how things work. In my index.php I do $dbconn = ...
0
votes
2answers
25 views

How to store the results in table?

I have a one table A and that contains values NAME AGE Loga 18 Anitha 20 Saranya 13 I was test the table values like if condition using case statement case when AGE>=18 then 'major' ...
2
votes
6answers
95 views

How to write the following query correctly?

Find all bars that sell beers that are cheaper than all beers sold by "99 bottles" EDIT: Interpretation: So compare all the beers from Bar1 and check if all the those beers are cheaper than "99 ...
0
votes
1answer
55 views

No value specified for parameter 1

I am using Hiberante to connect to postgres database. I am trying to insert a record into the database. I have the values for the record in a string array which I got from a csv file. This is my dao ...
0
votes
3answers
60 views

Debugging a SQL Query

I have a table structure like below. I need to select the row where User_Id =100 and User_sub_id = 1 and time_used = minimum of all and where Timestamp the highest. The output of my query should ...
1
vote
1answer
40 views

SQL window functions: Performance impact of returning the same avg() many times?

I would like to SELECT a bunch of rows from table A, along with the results of aggregate functions like avg(A.price) and avg(A.distance). Now, the SELECT query takes a good bit of time, so I don't ...
-3
votes
2answers
41 views

PHP (mysql) => Django (postgresql) [closed]

Please help me remake sql query from PHP to Django (PostgreSQL): $sql = 'SELECT `posts`.`entityId`, `posts`.`listId`, `posts`.`message`, `posts`.`time` FROM `subscriptions`, `posts` WHERE ...
0
votes
2answers
40 views

How to select rows where a combination of 2 columns is the same

Sorry that the title is so bad, I'll try explaining with a simplified example: lets say I have the following table: _______________________ |id|variant_id|attr_id| |__|__________|_______| |1 |15 ...
0
votes
2answers
26 views

Checking which radio button is selected in php

I have an html page that has two radio buttons ("yes" and "no") along with a submit button. How can I specify that I want to execute a posgresql query only if the submit button is pressed AND the ...
1
vote
2answers
39 views

new to php, what's wrong with my sql query?

I'm trying to run a query using php and its posgresql built in functions but I can't figure out why my sql query isn't being run. Can anyone point out to me what's wrong with this: // create our ...
1
vote
3answers
63 views

Get rows where two values are unique to each other

The values of interest are an EIN and a registration number REG. There are lots of records for each value. What I want to know is which pair of values only appears with each other (or a blank EIN). ...
0
votes
1answer
27 views

Showing specific output data based on duplicate rows and null values [postgresql]

I'm using the following SQL (with a union to two similar queries): SELECT distinct a.source, a.p_id, a.name, b.prod_count, b.prod_amt, 'Def' as prod_type FROM ...
1
vote
2answers
24 views

Filtering a many to many (PostgreSQL)

create table "users"( "id" SERIAL PRIMARY KEY NOT NULL, "full_name" varchar(100) NOT NULL, "role" integer NOT NULL DEFAULT 0, "email" varchar(100) NOT NULL ); create table ...
0
votes
3answers
49 views

finding the latest entry in Postgres

The following (Postgres) query always returns a result, because the performance.query_plan table has several entries, with different ts (Timestamp) values. select * from performance.query q, ...
-1
votes
0answers
43 views

Efficient way to update data from csv [closed]

I have a sql file that contains many update commands. one way that I have used in postgresql 9.1 is just read file and passed data to cursor, like. f_c = open('_c_m_.sql', 'r') ...
0
votes
1answer
37 views

Is it posible to create a timestamp with meridian indicator in postgres?

I'm trying to create a timestamp column like "20-04-2013 06:56:37 AM" I can use to_char function to create it as a text. But it impossible with a timestamp column.
4
votes
3answers
73 views

How do I limit a select by a sum?

I want to select all the cheapest toys of my stock, amounting a total of 10.0 USD: That is, I want to do something that looks like this: select * from toy where sum(price) < 10.0 order by price; ...
2
votes
1answer
39 views

SQL query table of skills

I need to query predefined sets of skill ratings out of a PostgreSQL table. Consider the following demo table with users 1, 2 and 3, each of which has different skills and skill ratings: ...
1
vote
2answers
45 views

Inserting data from one table(triplestore) to another(property table)

I have a to transfer RDF data from a triplestore to property tables. Example of a triple store and a property table is given below. triplestore Subject Property Object Sub1 prop1 hello Sub2 ...
-2
votes
1answer
57 views

Returning PostgreSQL queries as objects using JDBC [closed]

Currently I have a web services that connects to PostgreSQL using the JDBC. As of now the query returns as one long string as it was the only way I could get it to work. I would like to returned ...
-3
votes
2answers
39 views

Query optimisation with similar joins [closed]

Help me in query optimization in postgres SELECT stats_0.some_fields, stats_1.some_fields, etc ... FROM banner_tickets INNER JOIN phrases ON phrases.id = banner_tickets.phrase_id INNER JOIN ...
4
votes
2answers
59 views

Postgresql incremental and conditional filtering

I have this table ID value user stock ----|--------|---------|--------- 1 | 10 | mark | AAPL 2 | 20 | rob | GOOG 3 | 30 | mark | AAPL 4 | -40 | mark ...
0
votes
1answer
24 views

Rails 3.2 - OR query not working properly - Rewriting query

I was really happy using this query for the search form. However, just found out that is not working properly. The failing bit is the .where which like against params[:query]. This like happens 4 ...
0
votes
4answers
89 views

Schema design: How do you incorporate “total”?

I am currently building a scoring table for my items. Each item has a score so the database (postgres) can sort the item by scores and return them to the user. Currently, the total score of the ...
0
votes
2answers
68 views

Rails 3.2 - undefined method `where' for #<Array:… - Query of Model.where()

I am trying to compare fields from a given Header to other fields in the Alarm model. As you can see in the code I filter the alarms in 3 different steps. The first 2 work perfectly. However, the last ...
2
votes
1answer
33 views

Rails 3.2 - Query to extract records not working properly - Is this syntax correct?

I got 2 models. One called Header and another one called Alarm Alarm has a column called keyword. Header have 4 columns called title_en, title_es, title_eu, title_fr I would like to compare these 4 ...
1
vote
3answers
68 views

Custom ordering in Rails query

I have a Post model with some has_many associations. class Post < ActiveRecord::Base ... has_many :votes has_many :comments has_many :ratings end I want a query that orders the posts by ...
0
votes
1answer
46 views

PSQLException: ERROR: syntax error in tsquery

Which characters must be avoided to make sure PSQLException: ERROR: syntax error in tsquery will not occur? The documentation does not say anything about how to escape the search string: ...
1
vote
2answers
62 views

Aggregate a single column in query with many columns

Is there a proper way to aggregate a single column when I have many other columns in the query? I've tried this answer which works, but my query has become a lot more verbose. My current query looks ...
0
votes
3answers
58 views

In SQL: When 'no results' return from a query show some default results

I'm using Postgres to get results from a table. I want to use SQL to solve a problem. When my postgresql query returns no results, I would like some default row results to appear. I am using ...
2
votes
3answers
52 views

Selecting with two different WHERE statements

I'm struggling to work out how to run a select query where I'm checking for two different values at the same time, and wanting them in seperate columns. My table example: ID | foreignID | value | ...
1
vote
2answers
179 views

How to get column attributes query from table name using PostgreSQL?

I have a project and I need a query to get all attributes of the columns (Column Name, Position, Data Type, Not Null? and Comments) all this using table name. I achieved get Column Name, Position ...
0
votes
1answer
52 views

Postgres: Get count & select distinct

I'm hitting a bit of a wall here with a pretty straightforward task (I think). I have a table that looks something like this: SELECT title, lat, lng, geocoder_identifier FROM entries ...
0
votes
2answers
30 views

How to check date in postgresql

my table name is tbl1. The fileds are id,name,txdate. | ID | NAME | TXDATE | | 1 | RAJ | 1-1-2013 | | 2 | RAVI | | | 3 | PRABHU | 25-3-2013 | | 4 | SAT | | ...
0
votes
1answer
63 views

PostgreSql PHP query #1: SQLSTATE[42601]: Syntax error:

I try to realize search from album where I set artist in form. I get variable from form and I make query. Successfully I get variable from the form. $words = $_REQUEST['SQLfield']; $tempquery = ...
0
votes
2answers
58 views

Posix regex in Postgresql to extract from quoted text?

I'm trying to extract a number of strings from column values in PostgreSQL. So basically I have text in columns in a table that look something like: blah blah blah.... ...

1 2 3 4 5 14