MySQLのshow tableをSQL Serverでも実施したい
2019, Oct 29
アジェンダ
MySQLでいうshow table
をSQL Serverで実行
select * from sys.columns where object_id = object_id('TableName')
show table
をSQL Serverで実行select * from sys.columns where object_id = object_id('TableName')