Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQL Server Management Studio でテーブルを作成したところ、一部のフィールドに割り当てたデータ型を忘れてしまいました。その情報にアクセスするにはどうすればよいですか?
テーブルを右クリックし、[テーブルのデザイン]を選択します。
sp_help tablename . Gives you information about your table including fields and datatypes
select * from information_schema.columns where table_name = <yourtable>