SQL语句的基本参数
create database benet
#创建数据库,名为benet
use benet...#打开benet数据库
create table A1
#创建表为A1
(
编号 int identity(1,1) not null,
#identity...删除A1表
insert into B1 (学号,姓名,身 份 证号,年龄,班级,备注)
values (2,'柳岩','110258198308282882',27,2,'英语科代表')
#往B1表中插入柳岩的信息...cto以外的,
所有员工的姓名、身 份 证号、职务和基本工资,
其中姓名显示为name,查询结果按照基本工资由高到底排序
select 姓名,身 份 证号,职务 into new01 from B1
#将B1...select '张三','运维','1995-01-01' union
select '李四','运维','1996-01-01' union
select 姓名,职务,出生日期 from B1
#将B1