SQL server 数据库 sql常用语句

一、使用查询分析器-管理数据库和数据表

#1. 创建数据库格式
create database databasename
on primary
(
name = "databasename_data" ,
filename = "filename\databasename_data.mdf" ,
size = 8 MB,
maxsize = 100 MB,
filegrowth = 10 %
)
log on
(
name = "databasename_log" ,
filename = "finename\database_log.ldf" ,
size = 5 MB,
filegrowth = 10 %
)
#2. 创建数据库
create database student -- 创建数据库
on primary -- 指定数据库文件位置
( name = "student_data" , -- 指定数据库的名称
filename = "d:\Dy231016\student_data.mdf" , -- 指定数据库库文件存放的位置
size = 8 MB, -- 指定数据库库文件的初始大小
maxsize = 100 MB, -- 指定数据库库文件的最大值
filegrowth = 10 % ) -- 指定数据库库文件的增长速度
log on -- 定义日志文件信息
( name = "student_log.ldf" , -- 指定日志文件名称
filename = "D:\Dy231016\student_log.ldf" , -- 指定日志文件存放位置
size = 1 MB, -- 指定日志文件大小
filegrowth = 10 % ) -- 指定日志文件增长率
-- 单行注释: --
-- 多行注释: /* 注释内容 */
/* 如果在添加数据库的时候,
不知道是否已经有数据库存在,
该如何操作? */
#3. 删除数据库
drop database databasename
#4. 判断数据库是否已经存在
if exists ( select * from sys .databases where name = 'student1' ) -- 判断系统中是否
存在该数据库
drop database student1 -- 如果存在,使用 drop 语句删除该数
据库
create database student1
drop database student1 -- 删除数据库
#5. 创建表格式
/* 创建表的格式
create table 表名 (
字段 1 数据类型 属性 约束,
字段 2 数据类型 属性 约束,
字段 3 数据类型 属性 约束
)
*/
#6. 创建表
use student -- 切换数据库
create table stuinfo ( -- 创建表
stu_id varchar ( 20 ) NOT NULL , -- 指定表的学号字段
stu_name varchar ( 50 ) NOT NULL , -- 指定表的姓名字段
stu_sex char ( 2 ) NOT NULL , -- 指定表的性别字段
stu_age int, -- 指定表的年龄字段
stu_add varchar ( 100 ) -- 指定表的地址字段
)
-- 创建一个班级表
create table class (
id int identity ( 1 , 1 ) , -- 设置编号自增长
cla_id varchar ( 20 ) not null ,
cla_name varchar ( 10 ) not null
)
-- 如何决断表是否存在,如果存在将其删除。
if exists ( select * from sys .objects where name = 'class' and type = 'U' ) --
询表是否存
drop table class --
果存在就将其删除
/*
表约束:
主键约束: primary key
外键约束: foreign key
默认值: default
非空: not null
检查约束: check
唯一: unique
标识:
自增长: identity
*/
-- 添加约束的格式
/*
alter table tablename
add constraint 约束名称 约束类型
*/
-- 删除约束格式
/*
alter table table name
drop constraint 约束名称
*/
-- 添加主键约束:
alter table stuinfo
add constraint pk_id primary key ( stu_id )
-- 添加默认约束
alter table stuinfo
add constraint def_set default ( ' ' ) for stu_sex
-- 添加检查约束
alter table stuinfo
add constraint ch_age check ( stu_age >= 0 and stu_age <= 100 )
-- 添加唯一约束
alter table stuinfo
add constraint un_addr unique ( stu_add )
-- 修改非空约束
alter table stuinfo
alter column stu_age int not null
-- 设置 class 表的主键
alter table class
add constraint pk_cla_id primary key ( cla_id )
-- 向已有的表中添加字段
alter table stuinfo
add cla_id varchar ( 20 ) not null
-- 向已有的表中添加字段
alter table stuinfo
add id int not null
-- stuinfo 表中的 cla_id 添加外键
alter table stuinfo
add constraint for_cla_id foreign key ( cla_id ) references class ( cla_id )
#7. 删除约束
/*
删除约束格式:
alter table tablename
drop constraint 约束名称
*/
-- 删除主键约束
alter table stuinfo
drop constraint pk_id
-- 删除默认约束
alter table stuinfo
drop constraint def_set
-- 删除检查约束
alter table stuinfo
drop constraint ch_age
-- 删除唯一约事
alter table stuinfo
drop constraint un_addr
#8 、创建表时直接添加约束
-- 创建班级表
create table class (
id int identity ( 1 , 1 ) ,
cla_id varchar ( 20 ) primary key not null ,
cla_name varchar ( 30 ) not null
)
-- 创建学生信息表
create table stuinfo1 (
id int identity ( 1 , 1 ) not null , -- 设置序号为自增长
stu_id varchar ( 20 ) primary key not null , -- 设置学号
stu_name varchar ( 40 ) not null , -- 姓名
stu_sex char ( 2 ) default ( ' ' ) , -- 设置性别默认值为男
stu_age int check ( stu_age >= 1 and stu_age <= 100 ) , -- 设置年龄范围
stu_tel char ( 11 ) unique not null , -- 设置手机号不能重复
stu_add varchar ( 50 ) , -- 地址
cla_id varchar ( 20 ) references class ( cla_id )
)
#9 、判断字段是否存在
-- 判断 stuinfo 表中是否存 tel 字段,如果有将其删除,如果没有创建。
if exists ( select * from sys .columns where name = 'tel' and
object_id = object_id ( 'stuinfo' ) ) -- 判断字段是否存
alter table stuinfo -- 更新表结构
drop column tel -- 删除字段
else -- 否则
alter table stuinfo -- 更新表字段
add tel varchar ( 11 ) not null -- 添加字段
#10 、删除表
drop table tablename
-- 删除学生表
use Dy231010
drop table stuinfo
二、使用查询分析器管理表
1 、向表中插入单条数据
-- 向表中插入数据
-- 格式
/**
insert [into] < 表名 > [ 字段名称 ] values < 字段的值 > 当给出指定的字段时,字段可以是部分,也
可以全部
insert into < 表名 > values < 字段的值 > 当省略字段项时,所给出的值列表必须与字段的位置、数
量、数据类型保持一直;
insert < 表名 > values < 字段的值 >
*/
-- 案例
insert class values ( '12345' , ' 运维实施 ' )
insert into stuinfo1 ( stu_id,stu_name,stu_sex,stu_add,stu_age,stu_tel )
values ( '10001' , ' 张三 ' , ' ' , ' 郑州金水区 ' , 19 , '12345' )
insert into stuinfo1 values ( '10002' , ' 李四 ' , ' ' , 19 , '19' , ' 郑州金水区 ' , '12345' )
2 、向表中插入多条数据
# 格式一
insert into < 表名 > values ( ''' 1' ' 2' , ' 3' , ' 4' ) , ( ' 1' ' 2' , ' 3' , ' 4' )
# 案例:
insert class values ( '1237' , 'abcf' ) , ( '128' , 'ad' )
# 格式二
insert into < 表名 > < 字段 1 ,字段 2 ,字段 3 ,字段 4 ,字段 5.... >
select ' 1' ' 2' , ' 3' , ' 4' , ' 5' , ' 6' unique ,
select ' 1' ' 2' , ' 3' , ' 4' , ' 5' , ' 6' unique ,
select ' 1' ' 2' , ' 3' , ' 4' , ' 5' , ' 6' unique ,
select ' 1' ' 2' , ' 3' , ' 4' , ' 5' , ' 6'
# 案例:
insert into class ( cla_id,cla_name )
select '113' , 'aaa' union
select '114' , 'bbb'
3 、查询数据表内容
# 格式
select < 字段名 1 > < 字段 2 > ,.. < 字段 n > from < 表名 > [ where 条件表达式 ]
# 案例
# 不使用条件查询
-- 查询整个表信息
select * from stuinfo1
-- 查询部分表 信息
select stu_id,stu_name from stuinfo1
# 使用条件查询
-- 查询学生信息表中名字叫张三的学生信息
select * from stuinfo1 where stu_name = ' 张三 '
-- 查询学生信息表中年龄大于 20 岁的学生信息
select * from stuinfo1 where stu_age > 20
-- 查询学生信息表中性别为男性的学生的姓名,手机号
select stu_name,stu_tel from stuinfo1 where stu_sex = ' '
select stu_name,stu_tel from stuinfo1 where stu_sex <> ' '
-- 查询学生信息表中年龄大于 20 岁并且性别为男的学生信息
select * from stuinfo1 where stu_age > 20 and stu_sex = ' '
-- 查询学生信息表中年龄大于 20 岁或性别为男的学生信息
select * from stuinfo1 where stu_age >= 20 or stu_sex = ' '
-- 模糊查询
-- 查询学生信息表中姓张学生的信息。模糊查询: like 通配符: % 表示 0 个或多个字符 _ :表示一个字
符;
select * from stuinfo1 where stu_name like ' %'
select * from stuinfo1 where stu_name like ' %'
select * from stuinfo1 where stu_name like ' _'
-- 区间查询
-- 查询年龄在 18 - 22 岁之间的所有学生信息; between and (包含界值)
select * from stuinfo1 where stu_age between 18 and 22
-- in 子查询
-- 查询年龄在一个范围之内的学生信息;( 1 5 7 18 20 22 30 50
select * from stuinfo1 where stu_age in ( 1 , 5 , 7 , 18 , 20 , 22 , 30 , 50 )
# 子查询
select * from stuinfo1 where stu_age in ( select stu_age from stuinfo1 where
stu_age > 18 and stu_age < 22 )
-- not in 子查询:不在某个范围之内
select * from stuinfo1 where stu_age not in ( 1 , 5 , 7 , 18 , 20 , 22 , 30 , 50 )
-- null : 空值 表示时,使用 is null 表示某个值为空值;
select * from stuinfo1 where cla_id is null
-- is not null 表示某个值不为空值;
select * from stuinfo1 where cla_id is not null
4 、表更新操作
/*
表数据更新:格式
update < 表名 > set 字段名 = [where 条件表达式 ]
*/
-- 将所有学生的年龄加 1
select * from stuinfo1
update stuinfo1 set stu_age = stu_age + 1
select * from stuinfo1
select * from class
-- 将张姓学生的班级修改为 1236
select * from stuinfo1 where stu_name like ' %'
update stuinfo1 set cla_id = '1236' where stu_name like ' %'
5 、表备份操作
/*
给表做备份:
insert into < 新表名 > [ 字段名 ] select 字段名 from < 原表名 > [where 条件表达式;该方式备份
表,新表必须提前创建好
select [ 字段 ] into < 新表名称 > from < 原表名 > 注意:该方式备份,新表不需要提前创建;
*/
select * into stuinfo from stuinfo1
insert into stuinfo1(stu_id,stu_name,stu_sex,stu_age,stu_tel) select
stu_id,stu_name,stu_sex,stu_age,stu_tel from stuinfo
select * from stuinfo
select * from stuinfo1
6 、表删除操作
/*
删除数据: delete
delete from < 表名 > [where 条件表达式 ]
truncate table < 表名 >
delete 删除时,如果有自增长列,再添加数据时,不会从头开始;
truncate 删除时,如果有自增长列,再添加数据时,自增长列会从头开始;
drop 删除表时,表结构和内容全部删除。
*/
delete from stuinfo1
delete from stuinfo1 where stu_age = 20
select * from stuinfo1
truncate table stuinfo1

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/235349.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Docker-4】Docker 命令

1、镜像管理命令 docker images #查看本机镜像 [rootdocker-0001 ~]# docker imagesdocker search 镜像名称 #从官方仓库查找镜像 [rootdocker-0001 ~]# docker search busybox #需要联网&#xff0c;本次不用操作docker pull 镜像名称:标签 #下载镜像 [rootdocke…

Qt前端技术:2.QSS

border-style&#xff1a;后边是两个参数的话第一个参数改变上下的style 第二个参数改变左右的style 如果后边是三个参数的话第一个参数改变上边的style第二个参数改变左右的style&#xff0c;第三个参数改变的下边的style 如果后边是四个参数的话对应的顺序为上&#xff0c;右…

掌控时间的尝试:基于Flask的自卷系统设计与实现

Gitee源代码仓库&#xff1a;Strong: 一个自卷系统 (gitee.com) 长期苦于自己的时间如脱缰野马&#xff0c;难以掌控&#xff0c;无法投入到我认为自己想做的事情中去。纯粹的自律实在不可靠&#xff0c;我希望借助一些外力来帮助自己挣脱泥潭&#xff0c;于是我制作了这个实验…

HiveServer2

HiveServer2 基本概念介绍 1、HiveServer2基本介绍 HiveServer2 (HS2) is a server interface that enables remote clients to execute queries against Hive and retrieve the results (a more detailed intro here). The current implementation, based on Thrift RPC, i…

Linux|shell编程|实验总结|期末考查试题

1.编写一个Linux的shell编程&#xff0c;计算输入两个年份之间的闰年之和。 #!/bin/bash# 获取用户输入的两个年份 echo "请输入两个年份&#xff0c;用空格隔开:" read year1 year2# 检查输入的年份是否有效 if [[ ! $year1 ~ ^[0-9]$ ]] || [[ ! $year2 ~ ^[0-9]$…

Spring MVC控制层框架

三、Spring MVC控制层框架 目录 一、SpringMVC简介和体验 1. 介绍2. 主要作用3. 核心组件和调用流程理解4. 快速体验 二、SpringMVC接收数据 1. 访问路径设置2. 接收参数&#xff08;重点&#xff09; 2.1 param 和 json参数比较2.2 param参数接收2.3 路径 参数接收2.4 json参…

旅游景区项目信息化建设运营方案:PPT47页,附下载

关键词&#xff1a;智慧景区解决方案&#xff0c;智慧景区建设&#xff0c;智慧景区开发与管理&#xff0c;智慧景区建设的意义&#xff0c;智慧景区管理 一、旅游景区项目信息化建设背景 1、旅游业发展迅速&#xff1a;随着旅游业的不断发展&#xff0c;游客对旅游体验的需求…

Flink(十)【处理函数】

前言 冬天学习成本太高了&#xff0c;每天冻得要死&#xff0c;自习室人满为患&#xff0c;确实是辛苦。学校基本的硬件条件差的一批&#xff08;图书馆贼小贼偏僻、老教室暖气还没有地板热、空教室还得自己一个一个挨着找&#xff09;&#xff0c;个体无法改变环境只能顺应了&…

【ARM Trace32(劳特巴赫) 高级篇 21 -- Trace 系统性能分析 Performance Analyzer】

请阅读【Trace32 ARM 专栏导读】 文章目录 Performance AnalyzerPerf 操作步骤采样对象PC采样对象Memory采样对象 TaskPerformance Analyzer sample-based profiling 通常也叫做Trace32 的性能分析(Perf), 这个功能是通过周期性的采样来实现的。被采样到的数据可以被用于统计…

Apache Flink(十七):Flink On Standalone任务提交-Standalone Application模式

🏡 个人主页:IT贫道_大数据OLAP体系技术栈,Apache Doris,Clickhouse 技术-CSDN博客 🚩 私聊博主:加入大数据技术讨论群聊,获取更多大数据资料。 🔔 博主个人B栈地址:豹哥教你大数据的个人空间-豹哥教你大数据个人主页-哔哩哔哩视频 目录

flink sql1.18.0连接SASL_PLAINTEXT认证的kafka3.3.1

阅读此文默认读者对docker、docker-compose有一定了解。 环境 docker-compose运行了一个jobmanager、一个taskmanager和一个sql-client。 如下&#xff1a; version: "2.2" services:jobmanager:image: flink:1.18.0-scala_2.12container_name: jobmanagerports:…

javafx实现图形编辑器

下面是一个简单的示例,使用JavaFX实现了一个基本的图形编辑器,可以绘制矩形和圆形。 import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.canvas.Canvas; import javafx.scene.canvas.GraphicsContext; import javafx.scene.layout.Bo…

基于RocketMQ实现分布式事务

前言 在上一篇文章Spring Boot自动装配原理以及实践我们完成了服务通用日志监控组件的开发&#xff0c;确保每个服务都可以基于一个注解实现业务功能的监控。 而本文我们尝试基于RocketMQ实现下单的分布式的事务。可能会有读者会有疑问&#xff0c;之前我们不是基于Seata完成了…

AIGC:阿里开源大模型通义千问部署与实战

1 引言 通义千问-7B&#xff08;Qwen-7B&#xff09;是阿里云研发的通义千问大模型系列的70亿参数规模的模型。Qwen-7B是基于Transformer的大语言模型, 在超大规模的预训练数据上进行训练得到。预训练数据类型多样&#xff0c;覆盖广泛&#xff0c;包括大量网络文本、专业书籍…

百度侯震宇:AI原生与大模型将从三个层面重构云计算

12月20日&#xff0c;2023百度云智大会智算大会在北京举办&#xff0c;大会以「大模型重构云计算&#xff0c;Cloud for AI」为主题&#xff0c;深度聚焦大模型引发的云计算变革。 百度智能云表示&#xff0c;为满足大模型落地需求&#xff0c;正在基于「云智一体」战略重构…

ubuntu qt 源码编译

官方源码下载地址 : 源码地址 选择要下载的版本 dmg结尾的是MacOS系统里使用的Qt库&#xff0c;qt-everywhere-opensource-src-4.7.0是Qt源码包&#xff0c;有zip和tar.gz两个压缩格式的&#xff0c;两个内容是一样的&#xff0c;只是zip一般在Windows下比较流行&#xff0c;…

Java:语法速通

参考 菜鸟教程 java 继承 class 父类 { }class 子类 extends 父类 { }继承的特性&#xff1a; 子类拥有父类非private的属性和方法子类可以对父类进行扩展子类可以重写父类的方法使用extends只能单继承&#xff0c;使用implements可以变相的多继承&#xff0c;即一个类继承…

无人机支持的空中无蜂窝大规模MIMO系统中上行链路分布式检测

无人机支持的空中无蜂窝大规模MIMO系统中上行链路分布式检测 无人机支持的空中无蜂窝大规模MIMO系统中上行链路分布式检测介绍题目一. 背景&#xff08;解决的问题&#xff09;二. 系统模型2.1 信道模型2.1.1 信道系数2.1.2 进行标准化 2.2 信道估计 和 数据传输2.2.1 信道估计…

技术面试的斗智斗勇III

上回说到在面试过程中&#xff0c;识别假简历的初级方法&#xff0c;也就是力争3句话就能确定是否假简历&#xff0c;省得后面再费口舌进行技术问题的沟通。 这回说说&#xff0c;用过初级方法后&#xff0c;还有哪些招数可以继续的。真正的高级方法放到下一篇。并且在最后一篇…

在Windows系统平台下部署运行服务端Idea工程的jar服务

前言 目前云原生docker等技术&#xff0c;加上部署流水线大大的简化了各种流程&#xff0c;我们后端开发的人员只需要提交代码后&#xff0c;构建、部署、测试、发布等环节都无需人员接入&#xff0c;完全的自动化交付了。那么你肯定不禁想问&#xff0c;如题的需求不是点击一…