根据cmd命令行模式 *** 作sqlserver数据库内容可知,SQLServer2016中,打开数据库的命令是usedatabase,删除数据库的命令是DROPDATABASE。
SQL是英文StructuredQueryLanguage的缩写,意思为结构化查询语言。SQL语言的主要功能就是同各种数据库建立联系。
命令:create database 数据库名;
示例:create database student;
命令:drop database 数据库名;
示例:drop databasestudent
命令:create table 表名
(列名数据类型,列名2.....)
示例:create table student
(snamechar(20),sidint)
命令:drop table 表名
示例:drop table student
(插入(新增)列)
命令:alter table 表名
add 新列名数据类型
示例:alter table student
addsageint
(删除列)
命令:alter table 表名
drop column 列名
示例:alter table student
drop column sid
(修改列类型)
命令:alter table 表名
altercolumn 列名数据类型
示例:alter table student
altercolumnsidfloat(浮点型)
(新增约束)
命令:alter table 表名
alter column 列名新数据类型
示例:alter table student
alter column PK_sidprimarykey(sid)(新增的约束类型是主键约束)
(删除约束)
命令:alter table 表名
drop列名
示例:alter table student
drop PK_sid
命令:select要查询的数据列名
from 表名
where筛选条件(无法对分组后的数据进行筛选)
(高级搜索)【groupby 列名(分组)
having筛选条件(只能对分组后的数据进行筛选)
order by排序方式(控制数据最后输出的排列方式有正序:asc、倒叙:desc)】
示例:selectsid
from student
wheresid=2
【group by sid
havingsid=1
order by desc】
命令:insertinto表名
(列名 ,列名)
values
(值,值)
示例:insertinto表名
(sname,sid,sage)
values
(‘张三’,12,15)
命令:update from 表名
set 列名=新值
示例:update from student
set sname='李四'
命令:insert into 表名(值的总数必须和列的总数相同)
select值,值,值union all
selevt值,值,值
示例:insertinto表名
select'张三',15,18
select'李四',16,19
命令:create view 视图名
as
select 列
from 表名
示例:create view students
as
select sname
from student
你说的应该是连接数据库吧。第一步:连接到数据库所在的服务器,telnet 182.192.xx.xxx
第二步:根据提示输入用户名 username 和 密码 password,输入密码时,屏幕上不会输出;
第三步:连接数据库,命令是 db2 connect to [dbname];
第四步:执行查询,db2 select current time from dual.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)