这只是建表语句,你在执行这些语句的时候应该都是选择好数据的,如果是linux客户端,首先mysql -u 用户名 -p密码 登录数据库,第二部use 数据库名; 第三部才是执行你截图 的建表语句
select
t1non_seller,
t3coupon,
ifnull(sum(t2bal),0)
from
(select seller,coupon from
(select distinct seller from t2) c,
(select distinct coupon from t2) d
) t3
left join t2 on
t3seller=t2seller and t3coupon=t2coupon
join t1
on t1seller=t3seller
group by
t1non_seller,t3coupon
order by t3coupon,t1non_seller
delete book_a, book_b from book_a , book_b where book_abookid=book_bbook_id;
指定从book_a和book_b删除重复记录。
delete book_a, book_b from book_a , book_b where book_abookid=book_bbook_id and book_id = 1; 指定删除特定记录。
以上就是关于今天有一道测试题,要建立一个mysql数据库,没有库名可以直接创建数据库里的表吗这是答案,但是没整明白!全部的内容,包括:今天有一道测试题,要建立一个mysql数据库,没有库名可以直接创建数据库里的表吗这是答案,但是没整明白!、Mysql 数据库面试问题、mysql数据库问题:如下等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)