Introduction to Structured Query Language for Data Analytics (SF22SQL1001) — Day 10

We have arrived to the end of SF22SQL1001.

  CREATE SCHEMA lab15;
  GO

  CREATE PROCEDURE lab15.thanks_sp
  AS
  BEGIN
    PRINT 'Thank you for being part of SF22SQL1001!'
  END;

  EXEC lab15.thanks_sp;

Download the class notes for day 10.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.