6select from A where 部门='10' and 职位='manager'
select from A where 部门='20' and 职位='clerk'
select from A where 部门='20' and 薪金>=2000 and 职位 not in(select from A where 职位='manager' and 职位='clerk')
7select distinct name,工作 from A where 薪金>0
11有点麻烦
12select name from A where name='%%%%%'
最简单的语句如下:
USE master
GO
CREATE DATABASE 数据库名
ON
( NAME = prods_dat,
FILENAME = 'c:\program files\microsoft sql server\mssql\data\数据库名mdf',
SIZE = 4,
MAXSIZE = 10,
FILEGROWTH = 1 )
GO
以上就是关于数据库问题 一些简单的查询语句全部的内容,包括:数据库问题 一些简单的查询语句、创建数据库的sql语句怎么写、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)