在上篇札记MySQL札记5_语句分类(面试考点)归纳了4种常见的MySQL语句。在本篇札记中,主要介绍的是:数据定义语言DDL,data defination language。常用操作...
在MySQL数据中根据语句作用的不同,可以大致分为4类(面试常考):DDLdata defination language,数据定义语言;作用主要是:创建、删除、修改库表结构。针对...
字段名修饰字段指的是表中第一行即列属性,用column表示。常用来修饰字段的有:image.png运算符常用的运算符有:= :表示赋值或者判断!=或者:不等于:大于=...
在MySQL数据库中的主要数据类型有四种:数值类型浮点型字符串类型日期时间类型数值类型一般情况下:用int就可以超过了最大值,以最大值为准image.png浮点类型...
基础知识在window系统的安装目录中bin:存放可执行文件data:存放各种数据库,里面有各种表tablesmy.ini:配置文件连接MySQL连接MySQL 的时候一般有三个...
程序在执行的过程中会产生一些数据,一般情况下会将数据保存在磁盘中。其中最简单的方法就是将数据写入到某个文件中,就是将存储的对象格式化(或者叫做序列...
最近ubuntu18.04中安装的数据库MySQL5.7出现了问题,打算重新安装下。本文中将步骤记录如下:官网下载源码安装官网下载进入MySQL数据库的官网。里面有各种版...
英文文档enumerate(iterable, start=0)Return an enumerate object. iterable must be a sequence, an iterator, or some other object which supports itera...
英文文档Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder when using integer divi...
英文文档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...
英文文档class dict(**kwarg)class dict(mapping, **kwarg)class dict(iterable, **kwarg)Create a new dictionary. The dict object is the dictionary clas...
英文文档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...
英文文档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...
英文文档compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1)Compile the source into a code or AST object. Code objects can be ...
前言MySQL函数是MySQL数据库提供的内置函数,这些内置函数可以更方便处理表中的数据。下面简单介绍一下MySQL中包含的几类常用函数。聚合函数聚合函数可实现根...