码迷,mamicode.com
首页 >  
搜索关键字:sql语句练习    ( 64个结果
SQL语句练习
product 表 product_name、spu、create_datetime 想要查找商品名称中包涵短袖的商品一共有多少个 select count(*) from product where product_name like "%短袖%" shop 表 中有shop_name、chann ...
分类:数据库   时间:2021-07-01 17:22:17    阅读次数:0
sql语句练习
https://blog.csdn.net/wolfofsiberian/article/details/39346781# 学生表 课程表 分数表 1、检索出选了全部课程的学生姓名: (不存在一门课程没有分数) SELECT student.SNAME from student where not ...
分类:数据库   时间:2020-04-14 21:06:53    阅读次数:208
常见的sql语句练习
一、 1.新建表 test id varchar2(20)name varchar2(20)addr varchar2(50)score number create table test(id varchar2(20),name varchar2(20),addr varchar2(50),scor ...
分类:数据库   时间:2020-01-07 13:20:09    阅读次数:308
复杂sql语句练习
复杂sql语句练习 ...
分类:数据库   时间:2019-12-17 20:15:57    阅读次数:87
sql语句练习50题(Mysql版) 围观
表名和字段 –1.学生表 Student(s_id,s_name,s_birth,s_sex) –学生编号,学生姓名, 出生年月,学生性别 –2.课程表 Course(c_id,c_name,t_id) – –课程编号, 课程名称, 教师编号 –3.教师表 Teacher(t_id,t_name) ...
分类:数据库   时间:2019-12-13 21:54:48    阅读次数:86
sql语句练习
科目表course c_id c_name t_idid 科目名称 讲师id 学生信息表student s_id s_name s_birth s_sex id 学生姓名 出生年月日 性别 教师信息表teacher t_id t_name讲师id 讲师姓名 成绩表score s_id c_id s_ ...
分类:数据库   时间:2019-11-04 15:17:39    阅读次数:84
mysql/sqlserver数据库sql语句练习
1、在test数据库上建表create table DemoTable(Name VarChar(20),Age VarChar(3));create table ThisTable(Firstname Text,Lastname Text);mysql:mysql> create Table ge ...
分类:数据库   时间:2019-10-29 23:23:39    阅读次数:192
SQL语句练习
前提条件 1.mysql环境,可以装个phpstudy,简单方便 2.建立数据表: 学生表: Student(s_id,s_name,s_birth,s_sex) –学生编号,学生姓名, 出生年月,学生性别 课程表: Course(c_id,c_name,t_id) – –课程编号, 课程名称, 教 ...
分类:数据库   时间:2019-10-01 18:50:51    阅读次数:133
数据库-SQL语句练习
练习题链接:https://www.nowcoder.com/ta/sql?page=0 1,查找最晚入职员工的所有信息 2,查找入职员工时间排名倒数第三的员工所有信息 3,查找当前薪水详情以及部门编号dept_no 查找各个部门当前(to_date='9999-01-01')领导当前薪水详情以及其 ...
分类:数据库   时间:2019-09-07 00:41:33    阅读次数:101
sql语句练习:找出平均工资小于5000的商店所在的城市
员工信息表 employee: user_id , name, store_id, salary 商店表stores:store_id, name,city 参考答案:select a.city from stores a,employee b where b.store_id=a.store_id ...
分类:数据库   时间:2019-06-05 18:11:09    阅读次数:158
64条   1 2 3 4 ... 7 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!