Famor (2).sql Apr 2026
: DESCRIBE table_name; or EXEC sp_help 'table_name'; (in SQL Server). Finding Existing Objects :
If you are trying to explore or "look into" a database using SQL, you would typically use commands like these: famor (2).sql
SELECT name, type_desc FROM sys.objects WHERE type IN ('U', 'V', 'P'); -- U=Table, V=View, P=Procedure Use code with caution. Copied to clipboard : DESCRIBE table_name; or EXEC sp_help 'table_name'; (in
: Many online repositories and PDFs for this course include .sql files designed to help students "look into" or explore existing table structures, primary keys, or foreign keys. Typical "Looking Into" SQL Queries : DESCRIBE table_name