Sql
Mr_ChenZheng
这个作者很懒,什么都没留下…
展开
-
SQL
使用ALTER TABLE语句创建索引 alter table table_name add index index_name (column_list) ; alter table table_name add unique (column_list) ; alter table table_name add primary key (column_list) ; 删除索引 drop index...原创 2019-10-19 23:36:24 · 233 阅读 · 0 评论 -
Sql查询常见的面试题
查询前几条的四种方法 <!--第一种--> select top(10)* from AdminInfo where Id not in(select top(10) Id from AdminInfo) <!--第二种--> select top(10) * from AdminInfo where Id>(select MAX(Id)from AdminInfo...原创 2019-08-08 19:35:29 · 449 阅读 · 0 评论