i have 5 tables in my database with same table structure
am trying to select from all the tables with like keyword then am getting an erro the error is
Column 'TitleLine' in where clause is ambiguous
the query am executing is
select * from equitymarketnews,economynews,corporatenews,industrynews where TitleLine Like '%axis Bank%' OR StoryMain like '%axis Bank%';
can anyone tell me where am doing wrong ?
i know this can be done BY UNION can anyone give me example ?