摘要:
MYSQL创建数据表的三种方法 1.常规创建 create table if not exists 目标表 2.复制表格create 目标表 like 来源表 3.将table1的部分拿来创建table2create table if not exists actor_name(first_name 阅读全文
摘要:
in和Exits的区别 一、题解 题目:查询有成绩的学生信息 一、使用in 1.语法 select * from student s where s.stuid in(select stuid from score ss where ss.stuid = s.stuid) 2.执行顺序 首先会执行f 阅读全文