SqlSever基础 where between and
时间:2021-07-01 10:21:17
帮助过:27人阅读
--
创建一个数据库
2 create database helloworld1
3
4 --
用helloworld1这个数据库
5 use helloworld1
6
7 --
创建一个表格teacher
8 create table Teacher
9 (
10 Id
int primary key identity(
1,
1),
11 Name nvarchar(
10),
12 Class nchar(
2)
13 )
14
15 --
看看 teacher这个表格有啥
16 select *
from Teacher
17
18 --
向这个表格中插入这几行内容
19 insert into Teacher
20 values(
‘女娲娘娘‘,
‘道家‘),
21 (
‘元始天尊‘,
‘道家‘),
22 (
‘释迦摩尼佛‘,
‘佛家‘),
23 (
‘耶稣‘,
‘基督‘),
24 (
‘绿度母‘,
‘佛家‘),
25 (
‘九天应元雷声普化天尊‘,
‘道家‘),
26 (
‘无盐娘娘‘,
‘道家‘),
27 (
‘王母娘娘‘,
‘道家‘)
28
29 --
显示teacher表中id 4到7 的所有行的全部内容
30 select *
from Teacher
31 where Id between
4 and
7
2 show
——————————————————————————————————————————
博文的精髓,在技术部分,更在镇场一诗。
SqlSever是优秀的语言,值得努力学习。熟悉数据库的增删查改,写程序必备。
如果博文的内容有可以改进的地方,甚至有错误的地方,请留下评论,我一定努力改正,争取铸成一个良心博客。
注:此文仅作为科研学习,如果我无意中侵犯了您的权益,请务必及时告知,我会做出改正。
SqlSever基础 where between and
标签:between sqlsever 错误 png creat values alt hello 9.png