摘要:
本文来自《MySQL从入门到精通》国家863中部软件孵化器 编著。仅为个人笔记,若想了解更多,建议买书详读。 一)准确认识数据、数据库、数据库系统、数据库管理系统 1)数据(Data)是数据库中存储的基本对象,是数据库存储的最基本元素。 2)存储数据的“仓库”称之为数据库(Dataase, DB); 阅读全文
摘要:
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path. 阅读全文
摘要:
Follow up for "Unique Paths": Now consider if some obstacles are added to the grids. How many unique paths would there be? An obstacle and empty space 阅读全文
摘要:
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at any p 阅读全文
摘要:
Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word. Return all such p 阅读全文
摘要:
本文为实验楼相关章节的上级操作。 一)创建一个数据库test,并切换到该数据库,在数据库test 中创建一个表,并插入数据, 1)创建并切换 2)创建表格并插入数据 显示表中所有数据: 二)查询语句 1)寻找列的最大值 使用MAX()函数技术物品号article的最大值。 2)查询某列最大值所在行 阅读全文