Click here to Skip to main content
15,921,793 members

Comments by krisedison (Top 7 by date)

krisedison 22-Apr-14 5:30am View    
I see. Thanks for this one. It now works. I am thinking of a way to put this in a function. BTW, thanks a lot!
krisedison 22-Apr-14 4:10am View    
Please check this http://pastebin.com/sJ6dknEd
krisedison 22-Apr-14 3:34am View    
The query
select null from information_schema.columns where column_name='Column2'and table_name='TableName'
returns NULL or nothing
BUT the query
SELECT Column1,
CASE WHEN exists (select null from information_schema.columns where column_name='Column2'and table_name='TableName') THEN Column2
ELSE NULL END AS Column2
FROM TableName
didn't work if Column2 doesn't exists. I don't know why....
krisedison 22-Apr-14 2:20am View    
It says Invalid column name.
I didn't changed column_name because I am trying to look for Column2 in the table but I changed table_name value to the table that it will look for. But still, I have the invalid column error.
krisedison 22-Apr-14 2:09am View    
Yes it works if Column2 exists but if not it doesn't. I am now looking to use try and catch.