Tagged Questions
The multiple-columns tag has no wiki summary.
7
votes
8answers
411 views
LINQ to Entities - where..in clause with multiple columns
I'm trying to query data of the form with LINQ-to-EF:
class Location {
string Country;
string City;
string Address;
…
}
by looking up a location by the tuple (Country, City, ...
7
votes
2answers
695 views
how to edit text in multiple columns in vim
How can I edit my code in vim by displaying it in any number of columns?
My laptop and desktop monitors are widescreen (I suspect that is true of most monitors made in the last 5 or 10 years!). When ...
4
votes
1answer
616 views
RichFaces: Release sort column(s) of a DataTable when multiple column sort mode is on
Currently I'm developing a project (JSF 2.0, RichFaces 3.3.3) in which I have to get a 2-columns DataTable with multiple column sorting enabled (I've done this already via sortMode="Multi" property) ...
4
votes
8answers
4k views
Does making a primary key in multiple columns generate indexes for all of them?
If I set a primary key in multiple columns in Oracle, do I also need to create the indexes if I need them?
I believe that when you set a primary key on one column, you have it indexed by it; is it ...
3
votes
2answers
62 views
MySQL distinct values across columns
I have the following table:
id lb rb ls rs ch bk ot
1 10000 10001 10001 10001 10001 10001 10000
2 0 10000 0 10001 0 10000 0
3 0 ...
3
votes
1answer
161 views
Re-arrange multiple columns in a data set into one column using R
I would like to combine three columns in one of my data sets into one with variable name "al_anim" and remove any duplicates, rank the values (animal ids) from lowest to highest, and re-number each ...
3
votes
2answers
140 views
SQL constraint to have one unique value in two columns
I need to assure that a value is unique in two columns (this is not a "two columns" index issue).
Table A
Column A1 Column A2
Memphis New York -> ok
San Francisco Miami ...
3
votes
3answers
221 views
Why MySQL multiple-column index is overpopulated?
Consider following MySQL table:
CREATE TABLE `log`
(
`what` enum('add', 'edit', 'remove') CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
`with` int(10) unsigned NOT NULL,
KEY ...
3
votes
2answers
1k views
Combobox with multiple columns
Scenario: I am in the process of moving an application from access to C# and on one of the forms(in access) the user is able to select a drop down that has 3 columns (ID, FirstName, LastName). Once ...
2
votes
3answers
73 views
Select NOT IN multiple columns
I need to implement the following query
SELECT *
FROM friend
WHERE ( friend.id1, friend.id2 )
NOT IN (SELECT id1,
id2
FROM likes)
but ...
2
votes
2answers
155 views
how do I expand a ul or div to fill the height of its container
I am using multiple ULs (column) to provide side-by-side columns at the foot of my page. Each UL sits within a DIV (columnContainer). These DIVs sit within another DIV (shelf) (and then it is turtles ...
2
votes
1answer
696 views
CSS multi-column layout of list items doesn't align properly in Chrome
I am building a menu system presented to the user in multi-column format. The column-count property in CSS3 gets me 90% of the way there, but I'm having difficulties with alignment under Chrome.
The ...
2
votes
1answer
82 views
C++ IDE feature: Synchronized viewing columns for headers and implementation files?
Modern screens have large resolutions, fitting two or three columns of 80-column code easily. C++ basically requires that you separate your code into .hpp and .cpp files.
So, to utilize this space, ...
2
votes
2answers
285 views
if values of two columns are equal, change the value of resultant column to NA and if not keep to original value of resultant column - using R
This question is similar to the previous one.
I am providing this example data to get my question across.
id=c(1,2,3,4,5,6,7,8,9,10)
var1=c(0,1,2,0,6,9,0,0,3,0)
var2=c(0,0,2,3,0,0,0,5,0,0)
...
2
votes
2answers
185 views
creating a new variable using two columns when they satisfy certain conditions using R
I am providing this example data to get my question across.
aid=c(1,2,3,4,5,6,7,8,9,10)
foson=c(0,1,2,0,6,9,0,0,3,0)
fosof=c(0,0,2,3,0,0,0,5,0,0)
data=data.frame(aid,foson,fosof)
Now, I need to ...
1
vote
1answer
36 views
Excel: how to do something like: select count(col3,col4,col5,col6,col7) from TBL where col2 = '1-Jan';
Currently, I'm using a complex countifs() statement:
=countifs($B$2:$B$B1000,"="&L7,'Sheet2'!$C$2:$C$1000,"*")+
countifs($B$2:$B$B1000,"="&L7,'Sheet2'!$D$2:$D$1000,"*")+
...
1
vote
4answers
197 views
Is it possible to create multiple columns in UITableView?
I want to add more columns in my iPhone/iPad application. Is it possible to add more columns in one UITableView? Can you please suggest any sample code/block/project that using multiple columns in one ...
1
vote
3answers
35 views
Finding top scores over multiple columns
If my DATA sample is
team name score1 score2
Adele's 15 18
Madonna 16 3
Britanny 9 12
How can I get a top 5 list of scores using both columns -
my output should be
...
1
vote
1answer
59 views
Ordering by multiple columns that match variables
I currently have this mysql statement:
SELECT * FROM tablename
WHERE column1 = 'yes'
ORDER BY
CASE column2 WHEN 'premium' THEN 1
WHEN 'basic' THEN 2
...
1
vote
2answers
2k views
c # using linq to group by multiple columns in a datatable
I have three columns in a datatable: string, DateTime, and decimal. I want to group by the string and decimal column, and for the rows grouped I want to sum the decimal values. I know how to do the ...
1
vote
2answers
2k views
WPF Bind List to Multi-Column ListBox
Since starting in WPF I am still struggling to understand the data binding functionality.
I am trying to use a multi column list box and my XAMl looks like this:
<ListBox Name="RecordList">
...
1
vote
2answers
542 views
Inheritance Joined Strategy With Multiple Non-Keyed Columns
I have two classes Foo and Bar mapped to two different tables, and I'd like them to use the JOINED inheritance strategy, but joined using two non-keyed columns. The schema is pretty weird, but I'm ...
1
vote
1answer
629 views
CakePHP hasMany relationship with multiple columns
I am using CakePHP framework to build a web application. The simplest form of my problem is this:
I have a users table and a messages table with corresponding models. Messages are sent from a user to ...
1
vote
1answer
87 views
Is there a text editor that displays a file in more than one column
I have a wide screen and I would like to see the code I edit on multiple columns, like an article in a news paper. Ideally I would want the full screen filled with the content of the file I edit.
I ...
1
vote
2answers
278 views
Using subselect to accomplish LEFT JOIN
Is is possible to accomplish the equivalent of a LEFT JOIN with subselect where multiple columns are required.
Here's what I mean.
SELECT m.*, (SELECT * FROM model WHERE id = m.id LIMIT 1) AS models ...
1
vote
2answers
708 views
DataSet and Primary Key with multiple columns
How Can I use Find method in DataSet that has Primary Key make of 3 Columns?
dadSample.SelectCommand = New SqlCommand("SELECT * FROM StockBalance", conxMain)
...
0
votes
0answers
6 views
need to fetch the data from db according to weekly basis
I am beginner to SQL query, i need to retrieve the data according to weekly basis.
for ex: Date column - Time Column- Tagno 1 column - Tagno 2 Column--- like this.
I need to fetch & display the ...
0
votes
1answer
39 views
How to add multiple columns in ListSelectionDialog in eclipse?
I am creating a dialog by extending
org.eclipse.ui.dialogs.ListSelectionDialog
While overriding
createDialogArea(Composite parent)
if I call
super.createDialogArea(parent) and create 3 ...
0
votes
1answer
29 views
Add row in multiple-column listview?
I am having trouble adding a row that displays all the values of the member of an object.
Here is how I have set up my listview:
<ListView Height="178" HorizontalAlignment="Left" ...
0
votes
1answer
86 views
Removing all the columns of the data frame that have same values across all the rows
I have a data frame like this :
1 NA 0.2 NA 1 2
2 NA 0.5 NA 1 6
3 NA 0.7 NA 1 4
4 NA 0.3 NA 1 4
I want to remove the columns that have same values across all the rows.i.e my data frame should ...
0
votes
2answers
72 views
LINQ Multiple Column Join
Our initial query is composed of numerous subqueries that work correctly, based on joins that use a single column (productId). The resulting model maps to a grid that lists product names along with ...
0
votes
0answers
41 views
Multiple columns in IE7+ (css3-multi-column.js not working?)
I'm working on a site that uses CSS3 column-count property as a very important design feature.
After searching a little bit to find a solution to make this work in IE7+, I found an article on A List ...
0
votes
3answers
157 views
Setting column width in a data set
I would like to set column widths (for all the 3 columns) in this data set, as: anim=1-10; sireid=11-20; damid=21-30. Some columns have missing values.
...
0
votes
1answer
70 views
ipad two UITableView with data source linking to each other
Need to display data from a single datasource into two different tables arranged just like columns. Here if first uitableview loads upto row 10 the next uitableview should start from row 11 and also ...
0
votes
1answer
116 views
DataSet Relation over Multiple columns
I'm having a hard time setting relation between my tables in my dataset. I got 2 repeaters (nested). RepeaterReplies is the outer repeater. Here is where I bind it and set the relation.
Here is what ...
0
votes
1answer
246 views
how do i add multiple columns to a listbox using mixed data types in vba?
I'm trying to add items (multiple columns) to a listbox. As I understand, in order to add multiple columns, you normally send them as strings like so:
Listbox.AddItem("column1;column2;column3")
...
0
votes
1answer
54 views
Can I use unix sort to sort a file on multiple keys of different types (mix of strings and numbers)?
I have a delimited text file of multiple columns some of which are text and some of which are numbers. I would like to sort on multiple fields, wich span both text and numerical fields. While -n ...
0
votes
0answers
423 views
Sencha Touch - List Item -> row panels stacking up on one another
I have some code I am working on, trying to get the end product to look as if there was 2 columns. The app uses json feed to get the data and alter it so that the resulting information is displayed ...
0
votes
0answers
162 views
Multiple columns in Crystal report
I want to display text in multiple columns in crystal report. That means the text object will continue as next column in the same page when it encounter at the end of each the page. I do not use ...
0
votes
2answers
200 views
Is there a way to set column height (or alternatively, convert a standard report to a mail label)?
I'm using Crystal Reports to create a document with one header and two columns of detail per page. What I want is that every page would be like this:
-----------------------
| Group Header |
...
0
votes
3answers
853 views
LINQ to SQL: Multiple joins ON multiple Columns. Is this possible?
Given:
A table named TABLE_1 with the following columns:
ID
ColumnA
ColumnB
ColumnC
I have SQL query where TABLE_1 joins on itself twice based off of ColumnA, ColumnB, ColumnC. The query might ...
0
votes
1answer
822 views
Core Text multiple columns with different heights
I need to create a view that renders text in columns with a first column height that is shorter than the rest of the columns and all of the columns are even at the bottom. When I try to change the ...
0
votes
1answer
376 views
add multiple column to radiobuttonlist textfield
im developing a website by using c# 4.0
i need to add radiobuttonlist textfield multiple column from database how can i do this...
thank you...
0
votes
2answers
481 views
TSQL Question: Group by on multiple columns
I have a table with multiple columns that represent occurrences of an action.
simpleTableExample
id type $$$$$ value1 value2 value3 ... value15
-- ---- -- ----- ----- ----- -----
1 ...
0
votes
3answers
117 views
Image on the top of a multi-column layout with CSS
I have a two column layout (using the CSS3 multi column module) and I'd like to have an image at the top of the second column.
It seems like I have to place the image myself so that it's in the place ...
0
votes
1answer
362 views
Mapping a composite primary key with a foreign key relation in Nhibernate
a company I am working for is using an ERP and it's legacy database is Oracle.
Until now I've used packages (oracle stored procedures) to access data but during the years the number has grown ...
0
votes
2answers
689 views
Creating a multiple column combobox in Java
I need to create a ComboBox in Java that will have information in a column on the left and a Checkbox in a column on the right so that a user can select multiple items in the ComboBox. This needs to ...
0
votes
1answer
95 views
Getting Rid of Nil Class Error in Ruby
I currently have a table that is split into 4 columns as such:
<table id="customers">
<tr>
<th><em class='require'></em><%= ...
0
votes
1answer
460 views
I want to create paging between sets of columns created via the jQuery Columnizer plugin
//UPDATE//
I found some code to do paging which I have modified to work with the columnizer plugin (newsletter sample 10) for jQuery. The only problem is I can only go to the next part of the article ...
0
votes
1answer
208 views
many divs in a 3-column newspaper layout
Currently I have a number of divs of undefined length/height. they contain a few hyperlinks as a list.
The almost-desired effect is achieved by giving these divs float:left; width:150px; margin: 10px;
...