Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do i find similar column names from a database table?

for e.g.

a database table

1_1  1_2  1_3  5_6  67
    |    |    |    |   
    |    |    |    |

So, 1_1, 1_2, 1_3, 5_6 and 67 are the column names of a database table. And i would like to retrieve only the column names starts with 1 (1_1, 1_2 and 1_3). i tried the sql query but it dint work..

SELECT 1 LIKE '%1%' FROM sheet1;

It shows something of this short

1 LIKE '%1%'
         1
         1
share|improve this question
If you want to select columns, you're doing it wrong. – Jan Dvorak Jan 12 at 11:05
Could you explain what you are trying to achieve? The table design most likely has optimization potential – Michel Feldheim Jan 12 at 11:08
i would like to retrieve all the column values based on the similar column name. – user1971853 Jan 14 at 8:37

3 Answers

up vote 0 down vote accepted

Documentation find here

SHOW COLUMNS FROM tbl_name FROM db_name
LIKE '1%'

To get the contents of the respective column:

SQL Fiddle

share|improve this answer
Thankyou @rkp... but how should i list the contents of the respective column? – user1971853 Jan 14 at 10:02
added sql fiddle example. – rkp Jan 14 at 18:32

this may be useful to you

SELECT COLUMN_NAME from information_schema.COLUMNS where TABLE_NAME='table' AND TABLE_SCHEMA='database_name'

information_schema is database containing meta data about all databases so when ever you want this kind of data you simply fire query on it

share|improve this answer

Try this:

SELECT GROUP_CONCAT(COLUMN_NAME) INTO @s 
FROM information_schema.COLUMNS 
WHERE TABLE_SCHEMA = 'database_name' AND TABLE_NAME = 'tableName' AND 
      COLUMN_NAME LIKE '1%';

SET @sql = CONCAT('SELECT ', @s, ' FROM tableName');
PREPARE stmt FROM @sql;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.