seeker62 Starting Member
34 Posts
webfred Flowing Fount of Yak Knowledge
Germany 8529 Posts
James K Flowing Fount of Yak Knowledge
1728 Posts
select *, test.anything as all from test where [all] = 'cant'
visakh16 Very Important crosS Applying yaK Herder
India 48012 Posts
quote:Originally posted by seeker62select *, test.anything as allfrom testwhere all = 'cant'gives me an error stateing that it can not find the field all. That field is in the select statement. So how can I make this work.when i run select *, test.anything from test data appears under the column all
select * from ( select *, test.anything as [all] from test )t where [all] = 'cant'