随笔分类 - 数据库课程学习记录
Date Structure and Database 学习记录
摘要:Storage Hierarchy存储层次结构 主存:最快,易失性 cache,主存 二级存储:非易失性,访问时间适中 闪存 闪存:可用于制造没有活动部件的驱动器 SSD,USB存储 Block Level Storage Block: a logical unit for storage allo
阅读全文
摘要:Overview O(n^2) Selection Sort Insertion Sort O(nlogn) Merge Sort Quick Sort Selection Sort :O(n^2) int selectionSort(int a[],int target){ int min; fo
阅读全文
摘要:一.Overview resource constraints: space time Data Structure array, stack, queue, priority queue, linked list, tree, heap, graph For most algorithms, ru
阅读全文
摘要:四.SQL高级教程 1.SQL SELECT TOP 子句 SELECT TOP 子句用于规定要返回的记录的数目 SELECT TOP 子句对于拥有数千条记录的大型表来说,是非常有用的 (1)SQL Server / MS Access 语法 SELECT TOP number|percent co
阅读全文
摘要:1.Amazon Simple Storage Service (Amazon S3) 1.1 Overview of AWS S3 Amazon Simple Storage Service (Amazon S3) is an object storage service that offers
阅读全文
摘要:一.Using python to access DynamoDB. Inside the command prompt, enter: aws configure --profile dbaccess Install the boto3 library using pip (if you have
阅读全文
摘要:本次复习按照菜鸟教程文档学习,原地址:https://www.runoob.com/sql/sql-between.html 一.SQL简介 1.RDBMS 表示关系型数据库管理系统 2.注意事项 SQL 对大小写不敏感:SELECT 与 select 是相同的 sql语句末尾只有写了;才会执行 二
阅读全文
摘要:一道例题 一.表查询 T1.查询 给定一张表 employees 员工号employee_id 上司员工号 manager_id (1)查询并显示所有存在下属员工的员工号 建表: 插入测试数据: insert into employees values(2,1); insert into emplo
阅读全文
摘要:1.准备 本实验假定您已安装docker并设置了oracle容器,如“ Oracle Docker Overview”实验中所示。 此外,还应下载SQL Developer 如果Oracle docker容器当前未运行,请启动它 docker run --name oracle-xe -d -p 5
阅读全文
摘要:1.安装准备 1.1. Docker Download and Install Docker Desktop https://www.docker.com/products/docker-desktop 1.2. SQL Developer Download SQL Developer and ex
阅读全文
摘要:1. Preparation 1.1. Flask Flask is a web framework for Python, meaning that it provides functionality for building web applications, including managin
阅读全文

浙公网安备 33010602011771号