Tagged Questions
The rows tag has no wiki summary.
11
votes
4answers
269 views
Apply multiple functions to each row of a dataframe
Every time I think I understand about working with vectors, what appears to be a simple problem turns my head inside out. Lot's of reading and trying different examples hasn't helped on this occasion. ...
6
votes
3answers
163 views
how to swap images on canvas in android?
I have displayed images from resource in my application as rows and columns randomly.
From those rows and columns i would like to swap the two images when user click on beside of images only.The ...
6
votes
2answers
1k views
Remove Duplicate Rows Leaving Oldest Row Only?
I have a table of data and there are many duplicate entries from user submissions.
I want to delete all duplicates rows based on the field subscriberEmail, leaving only the original submission.
In ...
6
votes
3answers
7k views
How to delete current row with jquery datatable plugin
i have a column with buttons in a table an i am using jwuery datatable plugin. The buttons say "Remove" and the idea is that when you click on that button it deletes the current row in the table.
...
6
votes
4answers
18k views
how to get number of rows using SqlDataReader in C#
my question is about how to get number of rows using SqlDataReader in C#. I've seen some answers around the net about this but none were clearly defined except for one that states to do a while loop ...
6
votes
3answers
8k views
What's the most efficient/elegant way to delete elements from a matrix in MATLAB?
I want to delete several specific values from a matrix (if they exist). It is highly probable that there are multiple copies of the values in the matrix.
For example, consider an N-by-2 matrix ...
5
votes
3answers
260 views
DataGridView Custom Sorting
I have a DataGridView with 6 columns.
Example:
column1 column2 column3 column4 column5 column6
J6 RES-0112G 123.123 456.456 180 1111
FID2 FIDUCIAL 5.123 ...
5
votes
5answers
11k views
SQL server: convert rows to columns
I have a table with columns sales(int), month(int). I want to retrieve sum of sales corresponding to every month. I need ouput in form of 12 columns corresponding to each month in which there will be ...
5
votes
3answers
2k views
Does the space occupied by deleted rows get re-used?
I have read several times that after you delete a row in an InnoDB table in MySQL, its space is not reused, so if you make a lot of INSERTs into a table and then periodically DELETE some rows the ...
4
votes
3answers
1k views
Getting the count of rows in a Java resultset
Does anyone know a better way of getting the number of rows in a Java resultset returned from a MySQL database?
I'm currently using this:
public static int getResultSetRowCount(ResultSet resultSet) ...
4
votes
2answers
19k views
jQuery - Edit a table row inline
I have a table with arbitrary columns and rows. This fact is irrelevant though really, all I want to do is develop a function that will turn a row (or multiple rows) into a series of text inputs ...
4
votes
5answers
3k views
Combine rows in Access 2007
I'm looking for an Access 2007 equivalent to SQL Server's COALESCE function.
In SQL Server you could do something like:
---Person---
John
Steve
Richard
DECLARE @PersonList nvarchar(1024)
SELECT ...
3
votes
1answer
67 views
Dividing rows when time is overlapping in R
I have dataframe that was created from the fusion of two dataframes. Both spanned over the same time intervall but contained different information. When I put them together, the info overlapped since ...
3
votes
3answers
62 views
How to find Column with same (some x value) value repeated morethan once? needs to return those rows. (in Oracle)
There is a table called contacts,
with columns id, name, address, ph_no..etc.
i need to find out rows with the same name, if the rows count is more than 1, show those rows.
for example:
table: ...
3
votes
1answer
111 views
How to Display rows as Columns in MySQL?
Guys I've table called beneficiaryloans as follows
+----+----------------+--------+--------+------+--------+-----------+
| id | beneficiary_id | hfi_id | amount | rate | period | status_id |
...
3
votes
2answers
249 views
MySQL select top N rows out of M groups
I have this table:
CREATE TABLE IF NOT EXISTS `catalog_sites` (
`id` int(10) unsigned NOT NULL auto_increment,
`cat_id` int(10) unsigned NOT NULL,
`date` datetime NOT NULL,
`url` varchar(255) ...
3
votes
4answers
186 views
High performance MySQL random non-sequential row
I'm trying to grab a random row from a table where the data doesn't change. I've read that people try ORDER BY RAND() which is terrible for large datasets and doesn't scale well.
I've also seen the ...
3
votes
3answers
52 views
rows that exclude each other in create table statement
I have to create a table, with either first name and last name of a person, or a name of an organization. There has to be exactly one of them. For example one row of the table is -
first_name ...
3
votes
4answers
313 views
R: remove columns based on two column's similarity check
Input
row.no column2 column3 column4
1 bb ee up
2 bb ee down
3 bb ee up
4 bb yy down
5 bb zz ...
3
votes
5answers
509 views
swap rows in datagridview in c#
i have a datagridview which is not related with dataTable.
and i want to swap for example 1st and 10th rows in datagridview.
i use this code for it
int row_1 = 1;
int row_10 = 10;
for(int ...
3
votes
5answers
325 views
Matrix, algorithm interview question
This was one of my interview questions.
We have a matrix containing integers (no range provided). The matrix is randomly populated with integers. We need to devise an algorithm which finds those ...
3
votes
1answer
3k views
3
votes
3answers
2k views
Numpy - add row to array
How does one add rows to a numpy array?
I have an array A:
A = array([[0, 1, 2], [0, 2, 0]])
I wish to add rows to this array from another array X if the first element of each row in X meets a ...
3
votes
3answers
2k views
deleting rows in numpy array
I have an array that might look like this:
ANOVAInputMatrixValuesArray = [[ 0.96488889, 0.73641667, 0.67521429, 0.592875,
0.53172222], [ 0.78008333, 0.5938125, 0.481, 0.39883333, 0.]]
Notice that ...
3
votes
3answers
2k views
Compare two data.frames to find the rows in data.frame 1 that are not present in data.frame 2
I have the following 2 data.frames:
a1 <- data.frame(a = 1:5, b=letters[1:5])
a2 <- data.frame(a = 1:3, b=letters[1:3])
I want to find the row a1 has that a2 doesn't.
Is there a built in ...
3
votes
4answers
273 views
SQL select a sample of rows
I need to select sample rows from a set. For example if my select query returns x rows then if x is greater than 50 , I want only 50 rows returned but not just the top 50 but 50 that are evenly spread ...
3
votes
3answers
3k views
Python: Number of rows affected by cursor.execute("SELECT …)
How can I access the number of rows affected by:
cursor.execute("SELECT COUNT(*) from result where server_state='2' AND name LIKE '"+digest+"_"+charset+"_%'")
3
votes
4answers
310 views
Merge like dates in MS Access
I am a pilot who flies multiple legs in a day. The software I use to log flights spits out a csv file and lists every leg separately. I import the csv file into table 1 in ms access. I would like ...
3
votes
7answers
7k views
Convert multiple rows into one with comma as separator
If I issue SELECT username FROM Users I get this result:
username
--------
Paul
John
Mary
but what I really need is one row with all the values separated by comma, like this:
Paul, John, Mary
...
3
votes
3answers
2k views
delete rows from multiple tables
I'm trying to use SQL to delete multiple rows from multiple tables that are
joined together.
Table A is joined to Table B
Table B is joined to Table C
I want to delete all rows in table B & C ...
3
votes
9answers
2k views
How can I check if a database query will return results?
Our website uses Perl to provide a simple mechanism for our HR people to post vacancies to our website. It was developed by a third party, but they have been long since kicked into touch, and sadly we ...
2
votes
3answers
32 views
How to get row count of 2 different tables (and databases) in one query?
I got a database named accounts and account table inside of this database, Also I got the database named players and player table inside of this database.
How can I get a rows count of this two ...
2
votes
2answers
57 views
How to merge rows from a MySQL database table
EDIT: I reformulated the question because it seemed too complicated the other way.
Consider the following database tables
users
#id #money
1 100
2 150
3 100
4 200
5 200
6 100
7 250
8 ...
2
votes
1answer
45 views
Getting SQL Latest Rows based on Summary
I am having a table ItemTran in sql 2005 with the following columns
RowNo Item ID Period RcptQty
1 ITEM-A 2011-01 15
2 ITEM-A 2011-02 10
3 ITEM-A ...
2
votes
1answer
37 views
JTable Headlines between rows
I am wondering how I can realize something like this:
row 1
row 2
HEADLINE like 27.01.2011
row 3
row 4
HEADLINE like 28.01.2011
...
2
votes
4answers
110 views
MYSQL/PHP - Return average of rows while value doesn't change?
The title of this doesn't quite make sense, so I'll do my best to explain.
I have a very large dataset (1000's of rows) in a single table. The data in this table relates to GPS tracking of vehicles. ...
2
votes
1answer
337 views
Unselect all rows in datagridview
I have a two datagridview, and when I click to one of them, I would like to deselect all selection in the second datagridview, I tried this, but nothing works:
...
2
votes
3answers
67 views
Select Rows in a uniform order
I have a table customer and 100 rows in it. a status column is set for active/inactive customer in the table.
What i want to do is to select all customers from the table in a specific order
ie
...
2
votes
1answer
170 views
How to add empty rows to the ExtJS Grid?
I have the grid with paging. Every page has max 10 rows. Like this:
I set gradient background for .x-grid3-scroller selector in CSS. Everything is fine, while there is 10 items in the DirectStore. ...
2
votes
4answers
42 views
Counting a column in MySQL
Suppose that I have a column named '$' and in it I have different values, for example:
id|| $
======
1 || 50
======
2 || 54
======
3 || 76
======
How can i add the values of $? A query that would ...
2
votes
1answer
84 views
Put data in 2nd row of a gridview
I am using a foreach loop to insert data into a gridview such as this.
foreach (GridViewRow _row in grvbillDetail.Rows)
{
_row = text;
_row = text;
_row = int;
_row = int;
}
How can ...
2
votes
1answer
38 views
How can i divide each row of a vector with its next row value in matlab
Suppose i have the vector a=[1;2;2] i want to create the vector b=[1/2;1;2] deviding each value of the ith row of a with the ith+1 value, the last value can't be divided with anything so i let like it ...
2
votes
6answers
84 views
How can I get all the tr elements of a table and filter them using jquery?
I'm trying to grab all table rows in a table then filter them out by if they have a class on them titled "hideGroup." This is my code so far but it just keeps outputting numbers. What would be the ...
2
votes
1answer
48 views
How can I know what rows are visibile within a WPF DataGridView?
Is there a way to determine what data grid rows/cells are being show in the WPF DataGrid within the scrollviewer's bounds at any one time?
2
votes
1answer
203 views
Manipulate UIPickerView to have single rows
Does anyone understand how Apple manipulated the regular UIPickerView to look like the image below? Instead of two rows, I only need one in the middle. If anyone can point me in the right direction or ...
2
votes
5answers
69 views
Delete repeated results from MySQL query
A MySQL query retrieves:
totalpoints -- name
55 -- John Doe
55 -- John Doe
55 -- John Doe
55 -- John Doe
55 -- John Doe
21 -- Jean London
21 -- Jean London
13 -- Mark Derry
13 -- Mark Derry
13 -- ...
2
votes
2answers
413 views
Get the indexes of selected rows in GridView
I want get the rows I selected from gridview use a checkbox.
The checkbox is like this!
<asp:TemplateField ShowHeader="False">
<ItemTemplate>
...
2
votes
4answers
211 views
apply() and calcuating proportion of first row for all dataframe rows
I have a dataframe as shown below listing the number of injuries by vehicle type:
> trqldnum <- ...
2
votes
3answers
170 views
Converting Columns into rows with their respective data in sql server
i have a scenario where i need to convert columns of table to rows
eg -
table - stocks.
following is the structure of the table -
ScripName ScripCode Price
...
2
votes
2answers
122 views
Can I combine the results of one tables rows into a single row (with columns)?
I am essentially trying to accomplish this following:
Table 1:
MemberID | selection 1 | selection 2 | selection 3
...