Tagged Questions
The columnname tag has no wiki summary.
4
votes
4answers
6k views
Row names & column names in R
Do the following function pairs generate exactly the same results?
Pair 1) names() & colnames()
Pair 2) rownames() & row.names()
3
votes
3answers
58 views
foo.foo: Is giving a table column the same name as the table itself a bad idea?
I have a very simple table called genre, which looks like this:
GENRE
=====
id int
genre_category varchar()
genre_category has values like "narrative", "myth", and so on.
genre_category seems like ...
3
votes
6answers
341 views
What to name column in database table that holds versioning number
I'm trying to figure out what to call the column in my database table that holds an INT to specific "record version". I'm currently using "RecordOrder", but I don't like that, because people think ...
2
votes
3answers
90 views
appending or Pasting names to Column names in R
I Have a tab delim file with 400 columns.Now I want to append text to the column names.ie if there is column name is A and B,I want it to change A to A.ovca and B to B.ctrls.Like wise I want to add ...
2
votes
5answers
562 views
java 1.5: Best practice to keep constants for column name of db tables?
Technology:
- Java 1.5 or 1.6
- Hibernate 3.4
To avoid update of column name on multiple places on change of column name or tablename, i want to have a constant file for same.
I have following ...
2
votes
5answers
11k views
1
vote
2answers
55 views
Can I select a field from data type?
Can I select a field/column from data type?
Postgres 7.4 (yep we are upgrading)
SELECT *
FROM tbl_name
WHERE tbl_name.column = 'timestamp with time zone'
1
vote
2answers
1k views
Changing dimnames of matrices and data frames in R
Let's say I have created the following matrix:
> x <- matrix(1:20000,nrow=100)
> x[1:10,1:10]
[,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10]
[1,] 1 101 201 301 401 501 ...
0
votes
0answers
31 views
SQL Server : trying to pull back the column name from a select statement if it doesn't have valid data
This is the next step in a thread I have here
So nobody has to read the previous thread, I have a database and we'll call the tables Order, OrderDetail and OrderDetailDetails.
We have staging ...
0
votes
1answer
52 views
Can I customize column names for an abstract domain class in Grails?
I have an Abstract Domain Class in Grails wich has fields that all the other class will use, so the other class extends of it. This field are audit fields.
So I use the automatic timestamp fields: ...
0
votes
0answers
47 views
How to make Dynamic LINQ in Windows phone 7 by Passing Different Table Name and Column Names?
I have SQL queries like this
string str = tableName;
query = "select * from "+ str;
and based on that i want to fetch all rows's record...(Different table has different columns) i want to build ...
0
votes
0answers
74 views
Get Column Name from DomainDataSource
I've a Silverlight Application with RIA Services, and I want to know...
Is there any way to get Column Name from the DomainDataSource?
For example, my database table is like this:
TableName
-Field1
...
0
votes
1answer
316 views
DBD::CSV - How to get the column-names?
How can I get the column-names from the table? My trying didn't work:
#!/usr/bin/env perl
use warnings;
use 5.012;
use DBI;
my $options = { RaiseError => 1, PrintError => 0, f_ext => ...
0
votes
2answers
692 views
How can I determine mySQL prepared statement result column names in PHP?
That is, with a prepared statement like:
select col1,...coln from table where col3 = ?
I believe I can use $mysqli->field_count to get the number of columns being returned (haven't tried).
But is ...
-2
votes
2answers
273 views
How to get table name from column in DB2?
I need the db2 sql query to find the table/tables from column name. I have the column name but don't have table name which this column belongs to.