Tagged Questions
0
votes
0answers
13 views
Dynamic SQL = [Err] 42000 - [SQL Server]Incorrect syntax near '01'
Here is my code:
DECLARE @1day AS VARCHAR(MAX), @sqlText AS NVARCHAR(MAX), @firstdate AS DATETIME
SET @firstdate = DATEADD(dd,-(DAY(GETDATE())-1),GETDATE())
SET @1day = CONVERT(VARCHAR(MAX), ...
0
votes
1answer
12 views
Union all in DB2 SQL Query updates the order of fist table
I am really stuck in UNION ALL join, below is senario
if i ran this query indivisually i get below result
1) Select salary as result from employee
where empno = '111628548' and seqno = 4
...
-4
votes
3answers
41 views
Select database values from textbox
I have one listbox with 'firstname' and 'lastname' stored in it from the database.
How do i write my query to retrieve information from the database selecting the index.
I have
"Select * from table ...
1
vote
4answers
32 views
Put a PHP variable in a SQL Query
I have the following code:
try
{
$sql = 'SELECT id, type, date, amount, description, category
FROM `transactions`
WHERE type = "income"
AND month(date) = '$monthselect'
ORDER BY ...
0
votes
1answer
29 views
Access SQL: How to set date to year?
How to set the news.time to year? I want to find 2012 year.
SELECT
news.id,
news.Categoryid,
news.newsid,
news.Languageid,
news.createtime,
news.tags,
news.topic,
...
0
votes
0answers
26 views
Adding text to a table and preventing duplication of names
I have a table that stores names of companies. I run a query on my data to provide a list of names which meet certain criteria. I take the results of this query and remove residential names which ...
0
votes
1answer
22 views
SQL Query help - need to calculate statistics on one parameter based on another
Here is my query. I am trying to calculate average [Coat_Tank_Pressure] based on [Run_Number], so that my output from this query will be:
Each run last for 10 or more minutes, and data is taken ...
0
votes
2answers
19 views
posgresql accessing the 1st element of the record
I have a function that returns a record type:
CREATE OR REPLACE FUNCTION
a()
RETURNS record AS '$lib/lib', 'a'
LANGUAGE C VOLATILE STRICT COST 1;
the function ...
0
votes
1answer
35 views
SQL query: Grab data from a multiple columns conditionaly
I just started working with SQL. The data is stored as in three tables. An example is given below...
TABLE1
column: product family
TABLE2
column: location
TABLE3 columns of intrest:
building ...
0
votes
1answer
21 views
how to convert complex nested join sql query into Active Record rails 3?
I created a SQL query and ran it successfully. This query returns the record that has the last transaction_time in each group.
Select s.id, s.location_id
From sales_transactions s
INNER JOIN (
...
0
votes
5answers
57 views
SQL query inner joins and limit to max 3 most recent
I have the following query:
SELECT * FROM `product` INNER JOIN `shop`
ON `product`.shop_id= `shop`.id;
I wanted to get all of the products from all the shops I have, but I wanted to get 3 products ...
0
votes
0answers
10 views
How can I map custom sql queries to CSObjects in cool storage?
I want to use complicated sql queries to get lists of objects while using Vici.CoolStorage. Itself it provides a specific query syntax, but it is not powerful enough for my needs. On the website there ...
0
votes
3answers
50 views
Simplest way to select a column in table A that need info from table B?
I have two tables:
Table A stores user info:
Name | Sex | Location | Other | User_ID
Table B stores private messages and sender, receiver of that message:
Message_content | Sender_ID | Receiver_ID ...
1
vote
2answers
33 views
How to return columns before update using returning?
Hey in PL/SQL consider this query :
update cards s set s.column1= null, s.column2= null
where s.column3= in_column3
returning s.column1,s.column2
into v_column1,v_column2;
Problem is this puts the ...
-1
votes
0answers
22 views
update the records using rownumber or Rank functions in Teradata
I am trying to update the table which has multiple records for the same customer, So I need to update the records which qualifies the conditon 1 .i.e. Qualify Rank = 1. Pleae provide the ...
0
votes
1answer
17 views
how to SELECT and UPDATE query involving two table
With MYSQL I can insert into a table using a select statement with where clause
INSERT INTO Targeted (field1,field2) SELECT field1,field2 FROM Table WHERE id=$id
And now i trying to do update with ...
0
votes
1answer
26 views
How to get the player with the highest score with SQL
here is the setup of my problem.
class Match < ActiveRecord::Base
attr_accessible :acceptor, :a_id, :c_id, :game, :game_id, :wager
belongs_to :game
has_many :scores
scope :matches_won_by, lambda ...
-2
votes
0answers
58 views
Complex select query - sql server [closed]
I'm a novice of SQL, my question relates to the following tables:
Comments
id_comment|comment_product|comment_date|product_id|user_id
1 |Lorem 1 |2013/06/12 |1 |1
2 ...
0
votes
0answers
19 views
How to call a user defined function in Hive?
I want to write a hive query that depends on paramaters passed into a script. These parameters might require me to select from an unknown number of columns.
What I want to do is have one of the ...
-5
votes
2answers
42 views
SQL INSERT with SELECT inside, maybe inner joins [closed]
I have this INSERT:
INSERT INTO gamecodes (gamecode, accountname, premium_points, alreadyused)
VALUES ('$gamecode','$accountorname',$premiumpoints,'N')
I need a help. In variable $accountorname I ...
-1
votes
0answers
29 views
How can I get better performance with this SQL database and its queries?
It is a ASP.NET MVC 4 web application using entity framework model first.
I have a database with two tables one that have static data which is called Category and another one called News.
This web ...
0
votes
0answers
18 views
In DB2 for LUW, can I return all associated rows in a join if only one row matches
Let's say we have Table A and Table B. Technically, this is a many-to-many relationship. One entry in A can be associated to multiple entries in B, and vice versa. My issue arises when I have a ...
1
vote
2answers
37 views
Complicated Database Setup: Trying to display two field values that correspond to three other specific fields
I am creating a page to display a bunch of information from a database, but the database that I am working with is set up funky.
While there are about 15 columns, the ones I am concerned with are:
...
0
votes
3answers
14 views
Show only table names when viewing postgresql tables
So I have no idea how to do this and I've been reading the documentation and searching around but I can't seem to find anything. \d gives me a nice list of all the tables and information on them but I ...
1
vote
0answers
19 views
Search in key-value table with hibernate (or SQL query)
I have two tables:
Content(id,data,title,size)
ContentProperties(id,key,value,fk_content_id)
Each content record can have many properties (one to many). I want to use hibernate to retrieve content ...
-2
votes
1answer
30 views
Creating an Entity from a Query?
Is it possible to create an entity directly from query?
Not sure how it is. But I was told I can create an entity from query (Not VIEW).
My need is to join multiple tables and pull only some columns ...
0
votes
3answers
28 views
SQL : query that only contain one word
i want to select name that only contain one word with SQL wildcards..
i have tried
select name from employee where name not like '% %'
it works,but i wonder if there are other ways to do it using ...
1
vote
4answers
43 views
SQL Query List of months between dates
I've been searching without success for a way to list the months where my tables entries are in use.
Let's say we have a table with items in use between two dates :
ID StartDate EndDate as ...
0
votes
2answers
18 views
Rails Performing IN Operation
Might get grief, but here it comes.
I am trying to execute an IN operation on one of my clauses in Rails.
The call is:
@ret = BBOrder.find(:all, :conditions => ["symbol LIKE ? AND ...
0
votes
1answer
29 views
How to select columns that are similar values and calculate quantity and sum of prices
Hey I have a table in my Database like this that you see below.
I want to select "DocumentNumber" where they have similar values.
You see that there is three 10006513 values
Ducumentnumber ...
0
votes
4answers
42 views
Select wont work
Just what the dickens is wrong with this query?
SELECT id,
SUM(CASE myDate
WHEN DATEDIFF(day, myDate, GETDATE()) = 0 THEN [Items]
ELSE 0
END)
FROM ...
0
votes
1answer
35 views
Query Results and display data
Hello I need help in creating a stored procedure that pulls out multiple data from different tables.
My current stored procedure is as follows:
'@partnername nvarchar(120)
as
select ...
0
votes
4answers
66 views
SQL select values with or
Is it possible to make a query which does the following
select a,b or c,d from table where source=2 or target=2;
I want to select a,b if the source=2 or c,d if the target=2.
Is this possible ...
0
votes
2answers
52 views
query - group by max amount
tbl_transaction
Sender Receiver Amount Date
1102504637 31750690083 50 03/04/2013
1102504637 31750690083 50 04/04/2013
1102504637 31750690083 50 06/04/2013
1102504637 ...
1
vote
1answer
44 views
With MySQL how to distinguish between a NULL value and a non-existent value
For example there is a main table:
+----+---------+
| Id | column1 |
+----+---------+
| 1 | a |
| 2 | b |
| 3 | c |
+----+---------+
And a second table to join with:
...
0
votes
2answers
11 views
Sql Query to get data from associative table
I have to fetch data from two tables
(PK) = Primary Key
(FK) = Foreign Key
TABLE1- [STUDENTS]
s_id(PK) name other
1 a z
2 b z
3 c z
...
0
votes
1answer
17 views
SQL to get a particular thread based on two user
I recently build a thread based messaging system with the help from this post Thread Messaging
The 3 tables that involves are
member(member_id, member_userunique, and so on..)
...
0
votes
0answers
16 views
JDBC query with vector<String> as WHERE part
I have a table MYTABLE with a column STRINGCOL of string constants.
I further have a Vector, lets call it theVector, with a subset of those constants in STRINGCOL.
I want to write such a query:
...
0
votes
1answer
31 views
Query to Select & check 1 row at a time & stop when it finds the right value (MYSQL)?
Given this table:
Col1-Col2
85 - 2
95 - 4
46 - 3
79 - 6
11 - 5
13 - 1
The requirement is that I want the system to check each row at a time, if it see col2 =3 or col2 = 1, then it will stop & ...
0
votes
2answers
32 views
Get rid of duplicate lines in SQL result set
I have 2 tables which I use to get a result set from
select
a.id,
a.test,
a.score,
b.name,
b.person,
b.grade
from table_test a, table_pers b
where a.test=b.test
now the problem is that table b ...
1
vote
2answers
35 views
How to convert varchar2 column containing decimal numbers to number
I have a column named discount of type varchar2. It contains decimal numbers as well as integers. I want to convert it into number type. So I used this query
update table_name set ...
0
votes
3answers
38 views
How to rename a MSSQL Datbase that has name “Database”?
I have a MSSQL Database named "Database". Now when i am trying to rename it using query shown below,
USE master;
GO
ALTER DATABASE Database
Modify Name = Database01
GO
it gives me a error message ...
0
votes
1answer
35 views
Dynamic SQL value from table
I'm working with a dynamic query right now and I need values from a table.
My query so far:
DECLARE @query varchar(1500)
SET @query =
'SELECT Id,'
+ 'SUM(CASE WHEN ...
0
votes
2answers
63 views
Don't understand some part of query
Hi I'm trying to analyze this query.
But I just don't understand ) CNT, ) SUMT, ) DT_G.
Why do they put those and what do they mean by? Can anyone explain?
(
SELECT
...
0
votes
1answer
17 views
CodeIgniter Query not working need second pair of eyes
I have been working on this CodeIgniter Query for a couple of hours now and I can't figure out the problem. Here is the SQL Table with the data in it and the names of each field. The table name is ...
0
votes
2answers
26 views
How do I find the which table it is belong when I'm only given column name?
Hi I am working on SQL query, a total novice.
So I only have column name, and trying to find which table it is belong to.
How do I find that in toad? Can someone help?
1
vote
1answer
25 views
SQL query, generating several rows by a value in a field
I am using Oracle database. Imaging I have a table with a row as following
col1 | col2 | col3
'Str1' | 'Str2' | 4
The value from col3=4 should generate 4 rows as following:
col1 | col2 | ...
0
votes
2answers
40 views
SQL count more than 1 value accross multiple tables
I have a DB schema something like this:
CREATE TABLE projects (project_id int);
CREATE TABLE project_members (user_id int, project_id int);
CREATE TABLE project_issues (issue_id int, project_id int);
...
0
votes
2answers
41 views
Issue with convert NULL to String or to Double Issue
I have a query that retrive an object type and convert it to double value. Here is how I did:
Double.valueOf(rs.getObject("price").toString()).doubleValue()));
However, if the price data in DB is ...
0
votes
4answers
88 views
Update million rows using rowids from one table to another Oracle
Hi I have two table with million rows in each.I have oracle 11 g R1
I am sure many of us must have gone through this situation.
What is the most efficient and fast way to update from one table to ...



