-- Getting Column Names
alter table DailyLogs add ScrptrOfThDy bit
alter table DailyLogs add ScrptrOfThDyChrst bit
alter table DailyLogs add ScrptrOfThDyPhlp bit
alter table DailyLogs add ScrptrOfThDyJms bit
alter table DailyLogs add ScrptrOfThDyJhn bit
alter table DailyLogs add ScrptrOfThDyHnnh bit
select column_name, * from information_schema.columns where table_name = 'DailyLogs'
-- Getting Column Names alter table DailyLogs add ScrptrOfThDy bit alter table DailyLogs add ScrptrOfThDyChrst bit alter table DailyLogs add ScrptrOfThDyPhlp bit alter table DailyLogs add ScrptrOfThDyJms bit alter table DailyLogs add ScrptrOfThDyJhn bit alter table DailyLogs add ScrptrOfThDyHnnh bit
select column_name, * from information_schema.columns where table_name = 'DailyLogs'