Skip to content

Commit 5ebf69c

Browse files
committed
upload
1 parent 3c0c15a commit 5ebf69c

19 files changed

Lines changed: 737 additions & 263 deletions

File tree

database/code/09索引.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
--索引:加快数据的检索
2+
--创建索引
3+
create index i_ename on emp(ename);
4+
--删除索引
5+
drop index i_ename;
6+
select * from emp where ename = 'SMITH';

database/code/JDBC/.idea/workspace.xml

Lines changed: 323 additions & 247 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)