Famor (2).sql 〈2025〉
: You can often find accompanying scripts and downloads for their books there.
: DESCRIBE table_name; or EXEC sp_help 'table_name'; (in SQL Server). Finding Existing Objects : famor (2).sql
If you can tell me you're studying (e.g., Joins, Subqueries, or Stored Procedures), I can provide the exact code snippets that would typically be in that "look into" guide. : You can often find accompanying scripts and
: This is a well-known training series by Rick Morelan. The "(2)" in your query might refer to Volume 2 of the series or the second part of a specific lab focused on data manipulation or objects. : This is a well-known training series by Rick Morelan
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
While a file with that exact name isn't a standard SQL command, it likely corresponds to a within that curriculum. Based on common beginner SQL guides and the "Joes 2 Pros" framework, here is what you are likely looking for: Common Contexts for this Script