We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa5d01a commit 53dd870Copy full SHA for 53dd870
Major/index.sql
@@ -0,0 +1,6 @@
1
+--Creating and Deleting Index--
2
+
3
+create index idx_city
4
+on dbo.practice(City);
5
+select * from dbo.practice;
6
+drop index idx_city on dbo.practice;
0 commit comments