[sql]drop table tempdb ;
if exists ( select * from sysobjects where name = ‘tempdb’ and xtype = ‘U’ ) create table cars111 ( Name0 varchar(64) not null, Name1 varchar(64) not null, Name2 varchar(64) not null ) ;
select * from INFORMATION_SCHEMA.COLUMNS where table_name = ‘cars111’ and column_name = ‘Name0’ ; [/sql]