Tagged Questions
The minus tag has no wiki summary.
11
votes
5answers
8k views
CSS: Setting width/height as Percentage minus pixels
I've seen this question asked in a couple other contexts on SO, but I thought it would be worth asking again for my particular case. I'm trying to create some re-usable CSS classes for more ...
10
votes
2answers
204 views
C: unary minus operator behavior with unsigned operands
I can't seem to find the relevant parts in the C standard fully defining the behavior of the unary minus operator with unsigned operands.
The 2003 C++ standard (yes, C++, bear with me for a few ...
9
votes
3answers
11k views
How to get SQL from Hibernate Criteria API (*not* for logging)
is there an easy way to get the (to-be-generated) sql from a Hibernate Criteria?
Ideally I would have something like:
Criteria criteria = session.createCriteria(Operator.class);
... build up the ...
4
votes
3answers
777 views
Using minus in C#
I want to use - in the code below but Visual Studio doesn't let me to use it and gives "error, unexpected character".
Name = objFileInfo.Name.Substring(0,
objFileInfo.Name.Length – ...
4
votes
6answers
3k views
Prevent Oracle minus statement from removing duplicates
Given these two tables:
CREATE TABLE TEST1 (TEST VARCHAR2(1 BYTE))
CREATE TABLE TEST2 (TEST VARCHAR2(1 BYTE))
Where TEST1 has two rows both with the value 'A' and TEST2 has one row with the value ...
3
votes
4answers
198 views
Oracle: How do I grab a default value when a more specific value is null from within the same query?
That title is brutal, but I don't know how else to put it.
I have a key value table tied to a user_id that stores user preferences throughout the site. If a user hasn't gone in and updated any of ...
2
votes
2answers
320 views
ANTLR: problem differntiating unary and binary operators (e.g. minus sign)
i'm using ANTLR (3.2) to parse some rather simple grammar. Unfortunately, I came across a little problem. Take the follwoing rule:
exp
: NUM
| '(' expression OPERATOR expression ')' -> ...
2
votes
2answers
942 views
MySQL - Is it possible to get 'the difference' of two query results?
I need to merge two query results as in union, but I want to only keep the difference between the two results... Is this possible?
I'm basically selecting ALL resources in Query 1, and NOT-ALLOWED ...
2
votes
3answers
429 views
PHP MVC & SQL minus Model
I've been reading several articles on MVC and had a few questions I was hoping someone could possibly assist me in answering.
Firstly if MODEL is a representation of the data and a means in which to ...
1
vote
2answers
53 views
Query minus problems?
My query is not returning the expected amount of records
the first part returns 50.000 records
the second part (below the minus) returns 30.000
so as conclusion my minus should return 20.000 records.
...
1
vote
1answer
45 views
Minus each value of data
I have sort of data,
A = [2 4 6 8 10]
B = [1 2 3 4 5 6 7 8 9 10]
How to write program that can subtracts each value of A from all values of B.
To better understand,
Take A = 2, subtract from ...
1
vote
2answers
84 views
How do you use SQL MINUS statement with multiple returns?
I have a SQL statement that I want to return 6 fields found from a MINUS statement that only compares 1 field from 2 tables. It works properly when the MINUS statement only returns 1 entry, but ...
1
vote
1answer
99 views
What roles do minus signs and single quotation marks play in if statements?
In the following code, adding the same letter to both operands of the comparison changes the result. Despite - being not greater than j, -k is greater than jk.
This only happens if one of the ...
1
vote
1answer
206 views
How to use ImageMagick to substract a image from another?
I have this two images :
How can I use imagemagick to remove the background (second picture) from the first one ?
Cheers,
Rémy
Here I made you a final but simple example :
Here you see ...
1
vote
2answers
39 views
Need a div that is 100% of the page minus a fixed pixel amount. How can I do this?
I am having some trouble with div styles. It's not so easy to explain what I'm after so it's probably better if you see it for yourself:
http://pastehtml.com/view/1cv5wwd.html
Basically I need the ...
1
vote
2answers
77 views
Elegant way of doing table sync reports in Oracle?
So I have my two tables
TABLE_A
KEYA | VALUE
1 | 1.2
2 | 2.3
3 | 8.3
TABLE_B
KEYB | VALUE
1 | 1.2
3 | 1.6
4 | 5.5
And I want to create a report of the sync status ...
1
vote
1answer
166 views
SQL CASE statements and MINUS
Is there something about CASE statements that automatically breaks a query that uses MINUS? I'm comparing a live pull of a data set to a previous cache of it, and even though the CASE statements in ...
1
vote
2answers
361 views
how to prevent using space while typing?
i have one textfield for input some serial number code.i want set this code show alert if someone use spase. it means space is not allowed and just allowed use minus for separate this code. Are you ...
1
vote
6answers
2k views
javascript subtract(-) keycode
ok, i need my code to check if minus/subtract/- was pressed, if it was pressed i want an alert box to pop. i tried with both 109 and 189 key codes but i still don't get the desired result. although i ...
1
vote
1answer
627 views
another mysql minus question
I'm trying to achieve the following:
SELECT id, name FROM t_profiles MINUS (SELECT p.id, p.name FROM t_profiles AS p LEFT JOIN t_skills AS s ON p.id = s.id_employee WHERE s.lvl>0 and s.id_task=1)
...
1
vote
3answers
5k views
Tree view plus minus icon larger
How do i make the plus minus icons bigger in the tree view in C# .net with out making visual styles disable.
1
vote
2answers
1k views
How do I compare two glob values in Oracle
I have two tables I would like to complare. One of the columns is type glob. I would like to do something like this:
select key, glob_value source_table
minus
select key, glob_value target_table
...
1
vote
3answers
714 views
Implement symmetric difference in SQL Server?
Here's a problem I've been trying to solve at work. I'm not a database expert, so that perhaps this is a bit sophomoric. All apologies.
I have a given database D, which has been duplicated on ...
0
votes
3answers
42 views
MySQL Select from the most times this appears
This is kind of a complicated to explain. Their is a part of my site called "Rising Users". The problem is, I can't actually place any users.
Here's a screenshot of my data in PHPmyAdmin:
...
0
votes
1answer
15 views
filter rows from one table that appear in another sql server
I am trying to perform a filtering operation in SQL Server 2005.
Example. Let's say we have two tables, Current and Reject.
Current = 1, 2, 3, 4, 5, 1, 2
Reject = 2, 3, 4
Current \ Reject = 1, 2, 5
...
0
votes
2answers
67 views
MINUS oprator in MySQL?
I have some tables where I am getting the emails . And I dont want to get the emails in table tbl_unsubscribe . I wrote the query like :
SELECT cand_email FROM tbl_cand_data
UNION
SELECT emp_email ...
0
votes
1answer
57 views
Help with a SQL MINUS statement
I have 3 tables, Reporter_Vacation, Dropper, Vacation_Temp.
Reporter_Vacation has Reporter, Start_dt, End_dt (the 3 combined are unique)
Dropper has Dropper_ID and Reporter (both are unique)
...
0
votes
3answers
51 views
How do you use a multiple field unique key in a NOT IN statement?
I have a unique key that is going to be run through a NOT IN statement. How do you accomplish this?
SELECT DROPPER_ID, BEGIN_DT, END_DT
FROM VACATION_TEST
WHERE DROPPER_ID and BEGIN_DT and ...
0
votes
1answer
39 views
Getting the functionality of the MINUS SQL operator in XQuery
From previous queries, i have two variables. The first:
<list>
<item>a</item>
<item>b</item>
<item>a</item>
<item>c</item>
...
0
votes
1answer
286 views
SQL query operator minus is not working
(SELECT IDOperatore FROM operatore) MINUS
(SELECT IDOperatore FROM commessaoperatore GROUP BY IDOperatore)
This query is no working, even if I try to replace MINUS with EXCEPT.
The singular ...
0
votes
2answers
59 views
php calculations and echoing?
i have this function that takes two values and displays them, but its not doing the calculation right?
php code:
formatVote($votes_up,$votes_down)
$net_vote = $votes_up - $votes_down;
return ...
0
votes
2answers
194 views
Locally symmetric difference in sql
I have a problem similar to the stackoverflow question posed in the link below except that I need to exclude certain fields from the comparison but still include it in the result set. I'm penning ...
0
votes
4answers
311 views
MINUS two Tables based on 2 columns
I need to SELECT the rows of
'billing_temp' that
doesn't exist in 'billing' based on
two columns.
Currently I come-up with this query:
SELECT ControlNum, CarrierName, PhoneNum, ...