Tagged Questions
The left tag has no wiki summary.
15
votes
7answers
32k views
Linq to Entity with multiple left outer joins
I am trying to understand left outer joins in LINQ to Entity. For example I have the following 3 tables:
Company, CompanyProduct, Product
The CompanyProduct is linked to its two parent tables, ...
13
votes
4answers
24k views
WPF: HorizontalAlignment=Stretch, MaxWidth, and Left aligned at the same time?
This seems like it should be easy but I'm stumped. In WPF, I'd like a TextBox that stretches to the width of it's parent, but only to a maximum width. The problem is that I want it to be left ...
7
votes
6answers
739 views
Left inverse in numpy or scipy?
I am trying to obtain the left inverse of a non-square matrix in python using either numpy or scipy.
How can I translate the following Matlab code to Python?
>> A = [0,1; 0,1; 1,0]
A =
...
5
votes
2answers
574 views
Left Outer Join not returning all records from primary table
When I do a left outer join, I expect to get all the records that the query would return prior to adding the joined table, but it is only returning records that match the joined table (i.e: no record ...
4
votes
1answer
45 views
CSS3 transform not firing in firefox with javascript event handlers and functions
I've been building a gallery for a month or so now, the layout is simple, there's a thumbnail menu on the left and a gallery preview on the right. when you click a thumbnail that has loaded it fires ...
4
votes
5answers
107 views
Which table exactly is the “left” table and “right” table in a JOIN statement (SQL)?
What makes a given table the left table?
Is it that the table is indicated in the "From" part of the query?
Or, is it the left table because it is on the left hand side of the = operator?
Are the ...
4
votes
5answers
24k views
Left() function in Javascript or jQuery
I just want a very handy way to extract the numbers out of a string in Javascript and I am thinking about using jQuery, but I prefer the method that proves to be the simplest. I have requested the ...
3
votes
1answer
75 views
SQL left outer join - same named fields as rows instead of columns
I have 14 tables that describe a hierarchical XML data structure. One field is a key for the row and another field is a foreign key to its parent. The remaining 60 fields are the same in each table.
...
3
votes
2answers
163 views
div multiple float left stretch
I have someting like this:
<style>
.putLeft
{
float: left;
}
</style>
<table>
<tr>
<td>
Some dynamic text
</tr>
</td>
<tr>
...
3
votes
3answers
1k views
MySQL Left Join not returning null values for joined table
Please help me with the following MySQL query, which joins two tables (A and B):
SELECT * from A
left join B on A.sid = B.sid
where (rCode = 1 Or rCode = 2 Or rCode = 3 Or rCode = 5)
AND (rYear = ...
3
votes
1answer
968 views
Android Button drawableLeft - how to hardcode it (no xml)
how can i add a "drawable left" icon to a button object?
I mean something like this:
Button button = new Button();
button.setDrawableLeft(R.drawable...);
Thanks you all for your answers :-)
3
votes
1answer
601 views
Relative Performance in SQLServer of Substring vs a Right-Left combo
This is a performance based question, not a "I don't understand" or "best practice" question.
I have a varchar field in a SQLServer database that is guaranteed to be longer than 7 chars.
I need to ...
2
votes
2answers
40 views
Calculate speed per sec and time left of sending a file using sockets tcp c#
how can i calculate the speed per sec .. and .. time left in sec
i've tried to use
void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e) {
long prevSum = 0;
while ...
2
votes
2answers
31 views
Left outer join to a generated table?
Am I on completely the wrong tack ?
I want to do a left outer join to a query generated from 2 tables , but i keep getting errors. Do I need a different approach?
t1:
ID, Surname,Firstname
t2:
...
2
votes
1answer
76 views
Using ANTLR with Left-Recursive Rules
Basically, I've written a parser for a language with just basic arithmetic operators ( +, -, * / ) etc, but for the minus and plus cases, the Abstract Syntax Tree which is generated has parsed them as ...
2
votes
2answers
71 views
LEFT JOIN order and limit
This is my query:
SELECT `p`.`name` AS 'postauthor', `a`.`name` AS 'authorname',
`fr`.`pid`, `fp`.`post_topic` AS 'threadname', `fr`.`reason`
FROM `z_forum_reports` `fr`
LEFT JOIN `forums` ...
2
votes
4answers
214 views
Can I ask an Either whether it is Left (or Right)?
I know I can usually just pattern match, but sometimes I would find these functions useful:
isLeft = either (const True) (const False)
isRight = either (const False) (const True)
Is there ...
2
votes
2answers
117 views
MySQL Joining Tables
I have to join tables based on conditions
table : main
condition_field
unique_id
username
table : a
unique_id
companyname
table : b
username
companyname
If main.condition_field = "X"
I ...
2
votes
2answers
81 views
ANTLR: resolving non-LL(*) problems
assume following rules in EBNF:
<datum> --> <simple datum> | <compound datum>
<simple datum> --> <boolean> | <number>
| <character> | ...
2
votes
1answer
390 views
Howto create css columns that incl. a scrollable middle column and floating left and right columns
I'm creating a webpage where I need a content column in the center of the page (including a fixed width) and two non-scrollable (fixed) columns at the left and the right side of that content column ...
2
votes
3answers
883 views
iPhone - Navigation bar Back button item is not responding
I have a fullscreen modalView called like this :
The modalView is called with :
PreferencesController *nextWindow = [[[PreferencesController alloc] initWithNibName:@"Preferences" bundle:nil] ...
2
votes
2answers
1k views
Dynamically change css backgroundPosition left AND top via Jquery
I'm a new programmer and english is not my mother tongue so please forgive me in advance for both programming and english mistakes.
Here is what I want to do: I have a div tag that contains an image ...
2
votes
2answers
311 views
Left join with distinct values from second table
I'm trying to join two tables, one is a table of tags, and another is a table that bridges tagID and slotID. I want to create a sproc that returns the list of tags, and a column of slots that use ...
2
votes
4answers
2k views
Mysql query staying in 'SENDING DATA' state for long time when using LEFT JOIN
I have query which is going in the SENDING DATA state for very long period of time.
Can someone please help me with this : below are details
Mysql Query:
select ...
2
votes
2answers
369 views
LEFT OUTER JOIN in LINQ
How to perform left outer join in C# LINQ to objects without using join-on-equals-into clauses? Is there any way to do that with where clause?
Correct problem:
For inner join is easy and I have a ...
2
votes
1answer
71 views
Transact Sql LEFT function weird output
select replace(stuff('123456',2,2,'ABCD'),'1',' ')
select LEFT('ABCD456',4)
select left(replace(stuff('123456',2,2,'ABCD'),'1',' '),4)
Ok now the first select outputs 'ABCD456', the series of ...
2
votes
4answers
150 views
SQL LEFT JOIN help
My scenario: There are 3 tables for storing tv show information; season, episode and episode_translation.
My data: There are 3 seasons, with 3 episodes each one, but there is only translation for one ...
2
votes
3answers
900 views
Replace returned null values in LEFT OUTER JOIN
SELECT WO_BreakerRail.ID, indRailType.RailType, indRailType.RailCode, WO_BreakerRail.CreatedPieces, WO_BreakerRail.OutsideSource, WO_BreakerRail.Charged, WO_BreakerRail.Rejected, ...
2
votes
1answer
4k views
MySQL Multiple Left Joins
I am trying to create a news page for a website I am working on. I decided that I want to use correct MySQL queries (meaning COUNT(id) and joins instead of more than one query or num_rows.) I'm using ...
2
votes
3answers
2k views
Linq to entities Left Join
I want to achieve the following in Linq to Entities:
Get all Enquires that have no Application or the Application has a status != 4 (Completed)
select e.*
from Enquiry enq
left outer join ...
1
vote
1answer
59 views
Left Outer Join with one result per match and “priority” of match set by a different field in match SQL Server 2005
I am trying to get a single result (PHONE) per match (CONTACT_ID) in a Left Outer Join. I imagine that there is a way to accomplish this with the preference (or order) being set by another ...
1
vote
1answer
20 views
MySQL Left Join Single Field
Currently I am joining the 'articles' table with 'users' table. Instead of joining all fields from the 'users' table, I just want to join the field 'fullName'.
Is this possible? I've been searching ...
1
vote
1answer
71 views
Mysql LEFT JOIN -> Get latest topic id / topic title
I'm trying to left join a table where all topics are located. What im trying to do is to list all forums and its sub categories and also list latest topic at the same time.
SELECT root.name AS ...
1
vote
2answers
58 views
CSS left-attribute: 50% OR 500px, whichever is greater?
I have a div that has the following css: position: fixed; height: 100%; left: 50%;
Is it possible to have this element at left: 50% in situations when the 50% of browser width equals >500px and left: ...
1
vote
3answers
42 views
MYSQL LEFT(column, 100) and PHP {$row[(column)]}
I have a mySQL table with a text field named "body" and a title field named "title".
I want to choose the first 100 characters of the text field "body" by like this:
$query="SELECT title, LEFT(body, ...
1
vote
3answers
98 views
CSS float:left causes thumbnails to align diagonal to each other…>.<
I'm receiving this weird problem when updating the structure of my site.
Site URL is http://nailian.ca.
I have many many per page, but when I give them a
thumbnail {float:left; width:150px; ...
1
vote
3answers
77 views
Creating a group of users in PHP and MySQL
I'm wondering how I can use JOIN or LEFT JOIN to group users.
users table:
id (primary)
user (varchar)
pass (varchar)
email (varchar)
website (varchar)
bio (text)
avatar (varchar)
code (varchar)
...
1
vote
1answer
36 views
MySQL Left join (I think) help
I am having trouble working out how to return the correct row in a table given that said table is relational. The two tables are shown below.
web_quote_models table
id | model | product_id | ...
1
vote
2answers
38 views
Trouble with populating data on two mysql tables
Please help.
I have two tables.
subcat
id, user_id, subcat_id, title, description, price, best_offer,
image, zip, premium_listing, status, date_create,d ...
1
vote
2answers
61 views
MySQL multiple row joining
I have an issue with joining of tables that I have not managed to solve. Somehow I have the impression that it is more simple than I think. Anyhow:
I have three tables:
orders
orderlines
payments
...
1
vote
1answer
169 views
offset().left, offsetLeft, offset.left, what's the difference? why not use the pure js offsetLeft instead of the jQuery way?
Normally when getting the offset using jQuery I do offset().left. My understanding is that offsetLeft is pure javascript, so why not use this over the jQuery offset().left? Does it really help ...
1
vote
4answers
769 views
adding pixels to jquery .css() left property
This is my code:
var lef=$(this).css("left");
var top=$(this).css("top");
alert(lef);
$(this).after("<div class='edit cancel' ...
1
vote
2answers
53 views
silverlight animation question
Doe's anybody knows what wrong with markup below
<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
...
1
vote
2answers
107 views
CSS: “right” property refuse to apply?
This is driving me crazy!
I have two divs, right after the body tag. They are both absolute positioned and sized. They both have the same "left" property, but i later declare the "right" property for ...
1
vote
2answers
126 views
MySQL distinct and left, right
I have a table with day column like this:
2011-04-28, 2011-04-29 ...
day count name surname
2011-04-28 8 titi tutu
2011-04-28 12 tutu toto
2011-04-27 2 tutu toto
...
1
vote
1answer
101 views
Centered content with right fixed nav causes z-index problem
I have a centered container layout with a right fixed nav div. To make the fixed nav stay in place when viewport resizes it's set up in some nested divs. Problem is the nav div ends up infront of the ...
1
vote
2answers
128 views
optimize query (2 simple left joins)
SELECT fcat.id,fcat.title,fcat.description,
count(DISTINCT ftopic.id) as number_topics,
count(DISTINCT fpost.id) as number_posts FROM fcat
LEFT JOIN ftopic ON fcat.id=ftopic.cat_id
LEFT JOIN fpost ...
1
vote
3answers
190 views
MySQL multiple joins - how do i display the data? (using PHP)
Ok, i know this is stupid but I'm stuck and I need a kick in the head.
I have 3 tables (orders, orderitems, products) and I'm using 2 left outer joins in a query to display the orders history in the ...
1
vote
2answers
42 views
Mysql: How to return just the main rows from two tables if condition from joined table doesnt match?
maybe someone can help me.
We have two tables:
company_projects
company_events
A company_project may have more than one event with different types (event_type_id).
If a Project has a special ...
1
vote
1answer
276 views
Handle left right trackball swipe in blackberry
How do I write code to handle event that are fired when the track ball in a black berry app is swiped left and right?