Tagged Questions
0
votes
2answers
21 views
Added SQL query criteria returns wrong data set
I have a table of jobs, with fields that include date of last cost update, work billed, revised contract amount, and payments. I want to only return records where the amount billed, contracted and ...
-2
votes
1answer
20 views
Show Month with the Highest Quantity Sold
I need to show the month with the highest number of quantity sold.
I don't know how to do that. Please help thank you.
I have:
id, prod_name, price, q_sold, month
the q_sold must sum up with ...
0
votes
0answers
6 views
wpdb select multiple column values
One of my columns in table is called 'type' and contains different values like 'type1', 'type2', 'type3'..etc.
I need query like this for example:
$sql = $mydb->prepare("SELECT * FROM $table ...
1
vote
5answers
48 views
SQL - Can't check if NULL
If I have the following SQL:
SELECT * FROM users LEFT JOIN friendship ON users.username = friendship.user_name
I get the following result
But if I add the following WHERE at the end, I don't get ...
1
vote
4answers
44 views
SQL select duplicates on specific day
I'm trying to find duplicate entries which occurred on the same day. I have a database table which basically consists only from ID, USERNAME and DATE_CREATED.
I need a select which does roughly this:
...
1
vote
1answer
40 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
28 views
SQL fill field from two existing in table
I want to select, 3 field into my table: first and second are bool. Third is (fist = 0 && second = 0):
I tried this:
SELECT
CASE ..condition1..
THEN 1
ELSE 0
END
AS first,
CASE ...
0
votes
2answers
31 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 ...
0
votes
2answers
28 views
SQL Server Select from a table returned by a query as list of table names
If I have these tables below:
PLAYERS
ID Name
== ===========
1 Mick
2 Matt
COACHES
ID Name
== ===========
1 Bill
2 Don
And I have a script below to find all tables ...
0
votes
1answer
7 views
Words with single quote and `MATCH AGAINST` accuracy
How can i set mysql select to treat words without single quote same as if i searched them with single quote.
for example if i'm searching for dont treat it like don't
What I've tried
...
0
votes
1answer
56 views
SQL query, search data and return project name
Hey I'm looking for some help in creating a stored procedure.
Here are the details
I have a table called Partners which holds the partner information (Columns, PartnerID and partnername) I also have ...
0
votes
1answer
33 views
Converting date format SQL using convert()
I have the date in the format of yy-mm-dd and I want to convert it to dd-mm-yyyy. I used the following select statement:
select convert(varchar(30), hiredate, 110)
from emp;
But, I keep getting ...
0
votes
2answers
22 views
SQL, Displaying string instead of NULL/actualy value
I'm working on an assignment and am having trouble with this question:
*Display the department name and the name of all employees plus their manager status. Status should show message ‘is a Manager’ ...
0
votes
2answers
27 views
Select with priority on a column
I have a multiple sql query:
SELECT SQL_CALC_FOUND_ROWS id, autor, dle_post.date AS newsdate, dle_post.date AS DATE, short_story AS story, dle_post.xfields AS xfields, title, descr, keywords, ...
0
votes
1answer
52 views
SELECT MAX(DATE) from another table with Left Join?
I'm having problems with my SELECT MAX(DATE) code; when I run my query I get 3000+ rows as expected however I'm getting duplicate rows for [AssigneeID] instead of just the one with the MAX(DATE)? ...
1
vote
2answers
19 views
Mysql: How do I select a if a bit on a specific place is 1?
I have a mysql column with an integer containing info about the by a user selected options.
Now, for example, the number 42 = 2 + 8 + 32 = 2^1 + 2^3 + 2^5, so a user with options = 42 has option 1,3 ...
1
vote
1answer
50 views
SQL WHERE with conditions but no CASE-statement
I have to work with a given database.
I found this article, but did not succeed in adapting it for my needs:
http://weblogs.sqlteam.com/jeffs/archive/2003/11/14/513.aspx
What I want to do
I work ...
0
votes
2answers
23 views
mySQL: Insert meta_key into table when doesn't exist
Ok I'm looking to run a looped query against in mySQL against a Wordpress database. Certain records have a custom field of [city name] (ex: meta_key = 'sidebar' & meta_value = 'chicago'). The ...
3
votes
1answer
27 views
SQL. How to map two columns frequencies?
I have this PROJECT table:
PJNO TASKNO DESCRIP Other...
5555 11 Prototype New Screens
4444 21 Test First Prototype
5555 ...
2
votes
2answers
39 views
SQL select from two tables, using a distinct value between the two IF it exists, otherwise only using value from the first table?
I have two tables, with structures like this:
roomlist:
-room (unique)
-totalDesks
userlist:
-room (has duplicates)
-deskOwned
I need a SQL statement that will spit out the following:
room
...
1
vote
4answers
67 views
SQL Ordering Data from row “n+1” to “n-1”
I have a simple question. In MySQL, consider a row "n", how can we order rows by id (for example), but start from the row "n+1" and end to the row "n-1" ?
Thanks !
EDIT : I ommit to precise that I ...
0
votes
3answers
41 views
SELECT When child record doesn't exist
I have two tables parent and children. The parent.mopid and children.mopid is the connection between the two tables. How would I write a SELECT that would end result show me just the parent records ...
-2
votes
1answer
23 views
db2 sql IN OR performance [closed]
in DB2 query, what is the fastest between:
1)
SELECT A, B, C from MY_TABLE where Z = 'VAL1' OR Z = 'VAL2' OR Z = 'VAL3';
2)
SELECT A, B, C from MY_TABLE where Z IN ('VAL1', 'VAL2', 'VAL3');
0
votes
2answers
35 views
SQL (Oracle) nested select parameters
I'm trying to do something like:
select fred.name
, fred.emp_num
from fred
, joe
, (select * from
(select yr_bonus
, 1 grade
from mark
where mark.department = ...
1
vote
4answers
33 views
Multiple sql table select
There are tables with clients and festivals. Every festival happens every year (like New Year). But not every client is invited on any festival.
I need to get woman clients, that were invited on ...
0
votes
1answer
62 views
A query to SELECT a number range
I am having the following problem.
I would like to select a currency value from a database which will act as a default value on the top result of the query (this part is already done and is not a ...
0
votes
2answers
34 views
Unsure as to how to join two working queries together
I have two queries that function perfectly. I'd like to join the two queries together, but I can't figure out how to do this.
I have an SQL Server table structured as follows :
Table name : ...
1
vote
2answers
49 views
SQL- Selecting Columns based on Date and Batch Number
I'm close, now I am just having trouble with this code. It says I need to add exists somewhere? Thanks for the help!
SELECT (SELECT UA#SacmiDataLog_2013.NS_Inlet_T
, ...
0
votes
1answer
39 views
Laravel Eloquent Select CASE?
Is there anyone with experience in PHP & Laravel Eloquent who can help me resolve this statement? I'm trying to inject a CASE... WHEN.. END... inside a raw() method. It seemed like it was ...
0
votes
1answer
34 views
Difficult SELECT statement with only two columns
I have an SQL Server table structured as follows :
Table name : calendar.
Columns :
Calendar Date (smalldatetime)
Working Day (bit)
Calendar date has all dates, structured in the format ...
4
votes
2answers
42 views
MySQL select based on ENUM values
I have a a suppliers directory table in a MySQL database which has an associated suppliers mappings table. This table maps the following criteria against an individual supplier:
Services.
...
0
votes
2answers
36 views
Can't retrieve DB info
I need help figuring out why the following DB Query is not working. I know the DB connection is good. I also know the $referralname = $_SESSION['user_name']; is correctly rendering. It has to be ...
1
vote
1answer
32 views
MySQL - Selecting rows that do not have a match or that have with a condition
I can't figure this out so far, I have these tables:
students - Columns: id, name
stud_class - Columns: students_id, class_id
class - Columns: id, courses_id
courses - Columns: id, name
I need ...
-7
votes
1answer
38 views
sql select more values [closed]
In this code I need to add one more option: if field_id 21 = 24
SELECT
v.*, i.title
FROM
gavwb_flexicontent_fields_item_relations AS v
JOIN
gavwb_content AS i ON ...
0
votes
1answer
21 views
PDO Select top using bind
i have this problem,
I m trying to select a top from a database using PDO class
I have this:
$top = $_POST['input'];
$i = $db->Prepare("Select top ? from Table");
$i = $i->execute($top);
But ...
0
votes
1answer
24 views
Populate Temp Table Postgres
I have the following three tables in the postgres db of my django app:
publication {
id
title
}
tag {
id
title
}
publication_tags{
id
publication_id
tag_id
}
Where tag ...
-2
votes
3answers
94 views
Return first 8 characters of name
I am trying to create a unique username for everyone logged into the DB currently. I need this to be an 8.8 format. Meaning the first 8 characters of first name separated by a period and 8 first ...
0
votes
2answers
27 views
Using a txt file in sql server
I have a tab delimited .txt file, which contains the date and other information related to the date eg
Calendar Date Calendar Week Calendar Period Calendar Year Day No Week Day Of Week Day ...
0
votes
4answers
63 views
Sql Case When query
i've found "CASE WHEN" statement very useful for my query.
But this is my query (only select):
SELECT dbo.ARCHIVE.SYSTEM_KEY AS PROTOCOLLO,
CASE dbo.ARCHIVEDEST.ERR_ID WHEN 0 THEN 'OK' ELSE ...
0
votes
1answer
19 views
postgres multiple JDBC select statements in batch
How do you issue a single JDBC call to Postgres which includes 2 select statements? The two select statements select from different sets of tables and return two different result sets - so cannot be ...
0
votes
2answers
54 views
TO_DATE and then use in the WHERE with a BETWEEN
Can I take this SELECT below, substr out the 24 hour fallacy and replace it with 00 hour and then run the WHERE TRUNC(TO_DATE(FIX_DATETIME, 'MMDDYYHH24MISS')) BETWEEN TRUNC(SYSDATE-90) AND ...
0
votes
1answer
29 views
Many-to-many relationship, select related elemens without a join
I have three tables, User, Product and Instruction. There is a many-to-many relationship between User and Product as well as a many-to-many relationship between Product and Instruction.
I need to get ...
1
vote
2answers
51 views
PHP Grab User's Form Selection
Currently, I am grabbing a list from a database via an SQL statement and then injecting it into a drop down menu via php. However, now I need to tell which one the user selects from the list. Any easy ...
0
votes
1answer
31 views
mySQL giving more results than my query is supposed to
I'm trying to construct a MySQL-query, where the result is based on the given ingredients.
If said that I provide Tequila, Orangejuice and Grenadine, I want the result to be Tequila Sunrise ONLY. ...
1
vote
2answers
33 views
I need to use a temporary attribute I created in my Select Statement in order to use it in a Where statement?
I used a view to get the right answer but I want it in one SQL statement, also I was wondering if there was a way to do it without projecting out the tables again.
So can I COUNT(OW_OWNERNO) AS ...
1
vote
3answers
51 views
How to fetch a row which is related to multiple rows in another table?
I have some tables:
ws_shop_product
CREATE TABLE `ws_shop_product` (
`product_id` int(10) unsigned NOT NULL AUTO_INCREMENT
`product_title` varchar(255) COLLATE utf8_general_ci DEFAULT ...
3
votes
4answers
99 views
Why Duplicates in my join
Why am I getting duplicates? Seems simple but it isn't getting though my thick skull.
SELECT MOPACTIVITY.MOPID STRICT,
TO_CHAR(MOPNOTES.MOPNOTEDATE,
'yyyy-mm-dd hh24:mi') ...
0
votes
1answer
61 views
SELECT or do I need an UPDATE
I run a select statement that picks words out of the records from a note field using a WHERE condition.
I would like a field in the SQL to tell me which word it found in the note field.
How can I ...
0
votes
2answers
35 views
MYSQL - Select statement, if condition fail return empty string
I have this query (MYSQL):
SELECT agent.name,agency.title FROM agent, agency WHERE agent.id = "1"
AND agent.titleid = agency.titleid
This will give me a record with the name and title, ...
0
votes
1answer
19 views
how to select data based on the joint results of subquery
I want to select some data from a table A based on the subquery result from another table B
Structure of A
Dates NAME VALUE
02/01/2012 CC1 CC_value
02/01/2012 CC2 CC_value
...






