Check column name if existing
Hi,I have a list of column names that I need to check from my table if it exist.How will I check every columns of the table and prompt an error and stop the program from running if it is not existing? col_list = {"Col1", "Col2", "Col3", "Col4", "Col5" };
//checks column if exist
//..code continue running
//if column doesn't exist
//..code will stop script & error prompt
DMR
jay_holavarri