摘要: 一.Using python to access DynamoDB. Inside the command prompt, enter: aws configure --profile dbaccess Install the boto3 library using pip (if you have 阅读全文
posted @ 2020-10-23 22:24 Heinrich♣ 阅读(265) 评论(0) 推荐(0)
摘要: 本次复习按照菜鸟教程文档学习,原地址:https://www.runoob.com/sql/sql-between.html 一.SQL简介 1.RDBMS 表示关系型数据库管理系统 2.注意事项 SQL 对大小写不敏感:SELECT 与 select 是相同的 sql语句末尾只有写了;才会执行 二 阅读全文
posted @ 2020-10-23 09:46 Heinrich♣ 阅读(158) 评论(0) 推荐(0)
摘要: 一道例题 一.表查询 T1.查询 给定一张表 employees 员工号employee_id 上司员工号 manager_id (1)查询并显示所有存在下属员工的员工号 建表: 插入测试数据: insert into employees values(2,1); insert into emplo 阅读全文
posted @ 2020-10-23 09:41 Heinrich♣ 阅读(128) 评论(0) 推荐(0)