- 博客(17)
- 收藏
- 关注
原创 SQLZOO刷题记录5——SUM and COUNT
World Country Profile: Aggregate functions(世界国家概况:综合功能)题目7:Counting big countries in each continentFor each continent show the continent and number of countries with populations of at least 10 million.(对于每个大洲,显示大洲和人口数量超过10000万的国家数量)解题7:SELE.
2021-08-16 16:55:43 608
原创 SQLZOO刷题记录4——SELECT within SELECT Tutorial
题目3:Neighbours of Argentina and AustraliaList the name and continent of countries in the continents containing either Argentina or Australia. Order by name of the country.解题3:SELECT name, continent FROM world WHERE continent IN (SELECT con...
2021-08-16 11:22:30 428
原创 SQLZOO刷题记录3——SELECT from Nobel Tutorial
This tutorial is concerned with a table of Nobel prize winners:(本节关注诺贝尔奖获奖者信息)nobel(yr, subject, winner)题目12:ApostropheFind all details of the prize won by EUGENE O'NEILLEscaping single quotesYou can't put a single quote in a quote strin...
2021-08-11 21:04:46 376
原创 SQLZOO刷题记录2——SELECT from WORLD Tutorial
题目5:France, Germany, ItalyShow the name and population for France, Germany, Italy解题5:SELECT name, populationFROM worldWHERE name IN ('France', 'Germany', 'Italy')注意:函数IN的用法,括号(),()内部字符串加引号。题目8:Exclusive OR (XOR). Show the countries ...
2021-08-11 10:15:16 255
原创 SQLZOO刷题记录1——SELECT names
SELECT namesThis tutorial uses the LIKE operator to check names. We will be using the SELECT command on the table world: (本节要求在上表world中,使用like操作符进行一些操作。)题目13:Find the capital and the name where the capital includes the name of the country.(查找首都
2021-08-07 18:08:56 134
原创 pycharm新建python项目等问题
pycharm新建python项目、选择运行环境:创建项目第一次创建项目,File-new project - pire python ,需要选择 New environment using,新建虚拟运行环境,其他如图所示。之后创建项目时,可以选择 Previously configured interpreter ,选择已有的运行环境。Interpreter 选择python安装路径下的python.exe 文件。最后点击右下角的 create 按钮,即完成一个python项目的建
2021-01-08 11:52:01 9242
原创 Python使用pip安装Numpy模块
环境python版本:python-3.9.1 操作系统:Windows10 想要安装的模块:numpy前提使用pip安装模块,需要保证pip为最新版本。如果使用pip时出现问题提示:You should consider upgrading via the 'python -m pip install --upgrade pip' command.则可以进行pip更新,在cmd下输入:python -m pip install --upgrade pip更新...
2021-01-05 20:59:10 101834 5
原创 将SQL Server 2008数据库及包含数据导出成 .sql文件。
将SQL Server 2008数据库及包含数据导出成 .sql文件,可以作为数据库备份的一种方式,方便数据迁移时使用。使用工具:SQL Server 2008具体步骤:1. 打开SQL Server Management Studio,选中需要导出的数据库,右键-任务-生成脚本。2. 选中需要导出的数据库。3. 在 编写数据的脚本 中,选择 TRUE,表示将数据库...
2020-03-13 21:22:10 4058
原创 将Excel存储的数据导入SQL Server 2008数据库。
当数据库中有多条数据需要存储时,通过Excel批量导入数据库可以减轻工作量。使用工作:Excel;SQL Server 2008具体步骤:1.
2020-03-13 21:07:37 1273
原创 PowerDesigner生成数据模型.cdm后,转换成.sql文件导入SQL Server 2008。
PowerDesigner能够快速生成并修改数据库表结构及属性,是数据建模的高效工具。同时生成.cdm数据模型之后,也能转换成.sql文件,直接导入SQL Server 2008中,为下一步开发做准备。下面具体介绍一下操作步骤:使用软件:PowerDesigner15;SQL Server 2008步骤列表:一、cdm生成pdm二、生成 .sql文件三、将 .sql 文件导入S...
2020-03-13 16:55:26 2478
转载 (转载)常用的HTTP状态码
常用的HTTP状态码如下:原文链接:http://blog.sina.com.cn/s/blog_8d5c998901018695.html成功的状态码: 200 – 服务器成功返回网页 304 – 未修改 失败的状态码: 404 – 请求的网页不存在 503 – 服务器暂时不可用 500 – 服务器内部错误 下面的不是很常用,记住上面那几个就
2017-09-20 15:22:52 233
转载 转载:SCI 投稿Cover letter模板大全
转载自:http://blog.sina.com.cn/s/blog_4c88d09a010120jn.html1.第一次投稿Coverletter:主要任务是介绍文章主要创新以及声明没有一稿多投Dear Editors:We would like to submit the enclosed manuscript entitled “PaperTitle”, which we w
2017-06-27 20:24:19 2220
原创 《JavaScript DOM编程艺术 第2版》——读书笔记(不含代码部分)
第3章:DOMDOM: D(document) O(object) M(model)常用方法: getElementById getElementByTagName getElementByClassName getAttribute setAttribute第5章:最佳实践
2017-05-20 20:24:21 406
转载 论述各种不同调度算法的优劣
调度算法是指根据系统的资源分配策略所规定的资源分配算法。而选择调度方式和算法的若干准则如下:1) 面向用户的准则:周转时间短、响应时间快、截止时间的保证、优先权准则。2) 面向系统的准则:系统吞吐量、处理机利用率好、各类资源平衡利用。3) 最优准则:最大的CPU利用率、最大的吞吐量、最短的周转时间、最短的等待时间、最短的响应时间。 综合以上准则,下面浅显论述一下主要的处理机
2017-04-16 15:42:18 8136
转载 字符编码方式(转载)
原文链接:http://mp.weixin.qq.com/s/0_KKYD8kwD3L8Dcd8GOZNQ一、编码历史与区别 一直对字符的各种编码方式懵懵懂懂,什么ANSI UNICODE UTF-8 GB2312 GBK DBCS UCS……是不是看的很晕,假如您细细的阅读本文你一定可以清晰的理解他们。Let's go! 很久很久以前,有一群人,他们决定用8个可以
2016-11-30 11:48:39 373
转载 关于2的补码(转载)
原文链接:http://www.ruanyifeng.com/blog/2009/08/twos_complement.html作者: 阮一峰日期: 2009年8月 5日问一个基本的问题。负数在计算机中如何表示?举例来说,+8在计算机中表示为二进制的1000,那么-8怎么表示呢?很容易想到,可以将一个二进制位(bit)专门规定为符号位,它等于0时就表示正数,等于
2016-11-30 11:18:09 411
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人