3
votes
4answers
131 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
3answers
409 views
Innodb: 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 …
3
votes
1answer
4k views
jQuery - Edit a table row inline
Hi,
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 …
2
votes
4answers
1k views
how to get number of rows using SqlDataReader in C#
Hi, 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 …
2
votes
2answers
76 views
“Pivot” a table in Excel
I've got a large set of data in Excel 2007, but the rows should have been columns, and vice-versa. Is there a simply way to "pivot" this spreadsheet, rearranging all cells so that the rows become the …
2
votes
4answers
2k views
sql server :convert rows to columns
ihave at 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 …
2
votes
3answers
374 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 …
2
votes
11answers
941 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 …
1
vote
2answers
66 views
How to count diffrent rows in MySQL ? (three columns as a whole)
How to count rows with distinct values on any of the three columns: col1, col2, col3?
1
vote
2answers
56 views
Problem with rows and columns from a CSV
Hi, I'm having a major problem with writing values into a new CSV file.
I receive a csv file from which I parse all of the values. This works fine, I've brought this up and put it into a …
1
vote
2answers
159 views
Renaming rows and columns in R
I'm running the following script:
cause = c(1, 1, 1, 1, 1, 2, 1, 2, 2, 2, 2); time = c(1, 1, 2, 3, 3, 2, 2, 1, 1, 2, 2); table(cause, time)
And I get the following:
…
1
vote
4answers
101 views
Hide rows in postgres
I have decided that instead of deleting rows from a postgres database, i rather hide the rows so that in case the rows were deleted by accident, i can still retrieve them. What is the best approach to …
1
vote
3answers
218 views
jQuery removing columns and rows..
Hi all, I've got a table which I'm pulling in from an external website, but I need to be able to hide the first 2 columns, add a class to the 3rd column, add a class to the 6th row and delete the 7th …
1
vote
3answers
142 views
mysql query with group by and order by
I have a table like this:
.--------------------------------.
| Name | XX | Date |
.--------------------------------.
| N1 | 5 | 2009-05-01 |
| N1 | 10 | 2008-01-08 …
1
vote
2answers
899 views
DataGridView (VB.net) problems, nonvisible rows are still visible and the DataGridView is empty despite having a DataSource
I have several problems with rows in a DataGridView.
Background information: The DataGridView (DataGridViewCalib) is in one TabPage of a TabControl, some columns of the DataGridView are …
