アウトプットができる技術者に

it's a time to take a new step !

Sybase ASE 入門 syscolumns で not null のカラムを確認する

syscolumnsのstatusカラムの値が「8」以外は not null になっている。
sysobjectsとjoinして確認可能

select o.name, c.name, c.status  
from sysobjects o, syscolumns c 
where o.id = c.id and o.name= 'test1' and c.status != 8
  • 「colid」はカラムの順番