Skip to content

Instantly share code, notes, and snippets.

View edgarluck's full-sized avatar
🙂

edgarluck edgarluck

🙂
  • Perú
View GitHub Profile
-- SELECT * FROM demo;
-- Adding the unique constraint to specific column in the table using Alter clause
-- ALTER TABLE demo
-- ADD UNIQUE (name);
-- ALTER TABLE demo
-- DROP INDEX name;