Search notes:

SQL Server: sys.systypes

sys.systypes lists metadata about SQL Server data types.
Apparently, the table data type is not listed in this view.
select
   tp.name,
   tp.xtype,
   tp.status,
   tp.xusertype,
   tp.length,
   tp.xprec,
   tp.xscale,
   tp.tdefault,
   tp.domain,
   tp.uid,
   tp.reserved,
   tp.collationid,
   tp.usertype,
   tp.variable,
   tp.allownulls,
   tp.type,
   tp.printfmt,
   tp.prec,
   tp.scale,
   tp.collation
from
   sys.systypes tp
order by
   tp.name;
Github repository about-MSSQL, path: /administration/schemas/sys/objects/views/systypes/select.sql

See also

SQL Server data types
sys

Index