MYSQL

  一个开源的关系型数据库,开发者为瑞典 MySQL AB 公司。在2008年1月16号被 Sun 公司收购。而2009年,SUN 又被 Oracle 收购.目前 MySQL 被很多互联网企业所使用。有体积小、速度快、总体拥有成本低,开放源码等优点

0
推荐
1596
阅读

MySQL札记6_DDL(数据定义表)

在上篇札记MySQL札记5_语句分类(面试考点)归纳了4种常见的MySQL语句。在本篇札记中,主要介绍的是:数据定义语言DDL,data defination language。常用操作...
0
推荐
1210
阅读

MySQL札记5_MySQL语句分类

在MySQL数据中根据语句作用的不同,可以大致分为4类(面试常考):DDLdata defination language,数据定义语言;作用主要是:创建、删除、修改库表结构。针对...
0
推荐
1255
阅读

MySQL札记4_字段名修饰及运算符

字段名修饰字段指的是表中第一行即列属性,用column表示。常用来修饰字段的有:image.png运算符常用的运算符有:= :表示赋值或者判断!=或者:不等于:大于=...
0
推荐
1699
阅读

MySQL札记3_数据类型

在MySQL数据库中的主要数据类型有四种:数值类型浮点型字符串类型日期时间类型数值类型一般情况下:用int就可以超过了最大值,以最大值为准image.png浮点类型...
0
推荐
1254
阅读

MySQL札记2_基础知识

基础知识在window系统的安装目录中bin:存放可执行文件data:存放各种数据库,里面有各种表tablesmy.ini:配置文件连接MySQL连接MySQL 的时候一般有三个...
0
推荐
1709
阅读

Python札记48_操作数据

程序在执行的过程中会产生一些数据,一般情况下会将数据保存在磁盘中。其中最简单的方法就是将数据写入到某个文件中,就是将存储的对象格式化(或者叫做序列...
0
推荐
1442
阅读

MySQL札记1_ubuntu18.04安装MySQL5.7 96

最近ubuntu18.04中安装的数据库MySQL5.7出现了问题,打算重新安装下。本文中将步骤记录如下:官网下载源码安装官网下载进入MySQL数据库的官网。里面有各种版...
0
推荐
1747
阅读

Python3.6内置函数(18)——enumerate()

英文文档enumerate(iterable, start=0)Return an enumerate object. iterable must be a sequence, an iterator, or some other object which supports itera...
0
推荐
1686
阅读

Python3.6内置函数(17)——divmod()

英文文档Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when using integer divi...
0
推荐
1646
阅读

Python3.6内置函数(16)——dir()

英文文档dir([object])Without arguments, return the list of names in the current local scope. With an argument, attempt to return a list of valid at...
0
推荐
1804
阅读

Python3.6内置函数(15)——dict()

英文文档class dict(**kwarg)class dict(mapping, **kwarg)class dict(iterable, **kwarg)Create a new dictionary. The dict object is the dictionary clas...
0
推荐
1833
阅读

Python3.6内置函数(14)——delattr()

英文文档delattr(object, name)This is a relative of setattr(). The arguments are an object and a string. The string must be the name of one of the o...
0
推荐
1618
阅读

Python3.6内置函数(13)——complex()

英文文档Return a complex number with the value real + imag*1j or convert a string or number to a complex number. If the first parameter is a string...
0
推荐
1572
阅读

Python3.6内置函数(12)——compile()

英文文档compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1)Compile the source into a code or AST object. Code objects can be ...
0
推荐
1638
阅读

MySQL常用函数汇总学习

前言MySQL函数是MySQL数据库提供的内置函数,这些内置函数可以更方便处理表中的数据。下面简单介绍一下MySQL中包含的几类常用函数。聚合函数聚合函数可实现根...

13 人关注

最佳回复者

改版

反馈