Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Modifying columns
Modifying identities
Modifying sequences
12. Removing sequences
Summary

Instruction

Perfect! You can also remove a sequence you no longer need. Take a look:

DROP SEQUENCE standard_seq;

The code above will remove the sequence named standard_seq.

Exercise

The agency has generated some IDs starting from 1. Now, they no longer need the sequence artist_numbers. Remove it.