一、查看所以数据库类型 show databases; # 一共包含4个基本库,前三个表不能改,第四个可以# information_schema# mysql# performance_schema # test 可以自由建立表 二、进入特定数据库--> 查看数据库里面的表 # use + 特定库 ...
分类:
数据库 时间:
2020-11-19 12:42:48
阅读次数:
13
SWEN30006 Exam 2018 S1 Page 1 of 32School of Computing and Information SystemsSWEN30006 Software Modelling and DesignExamination: 2018 End of Semester ...
分类:
其他好文 时间:
2020-11-19 12:14:11
阅读次数:
6
CS5285: Information Security for eCommerce Autumn, 2020Problem Set 2 (Due Date: Q1–Q8 November 25 – 19:00) Total: 102 pointsSubmit Q1–Q7 electronic co ...
分类:
其他好文 时间:
2020-11-19 12:13:34
阅读次数:
4
1.基本操作指令1、查看当前系统数据库#mysql-uroot-pmysql>showdatabases;+--------------------+|Database+--------------------+|information_schema|mysql|performance_schema|erp+--------------------+3rowsinset(0.00sec)2、
分类:
数据库 时间:
2020-11-04 18:39:28
阅读次数:
34
1 推荐系统概念 1.1推荐系统的目的和作用 随着信息技术和互联网的发展,人们逐渐从信息匮乏的时代走入了信息过载(information overload)的时代。 在这个时代,无论是信息消费者还是信息生产者都遇到了很大的挑战:作为信息消费者,如何从大量信息中找到自己感兴趣的信息是一件非常困难的事情 ...
分类:
其他好文 时间:
2020-11-01 22:03:32
阅读次数:
21
3.2 settings.py 外加跨域 """ Django settings for django01 project. Generated by 'django-admin startproject' using Django 2.2. For more information on this ...
分类:
其他好文 时间:
2020-11-01 21:33:22
阅读次数:
23
SELECT table_name,table_type,table_schema FROM information_schema.TABLES WHERE table_schema = 'security_domain' AND table_type = 'BASE TABLE'; ...
分类:
数据库 时间:
2020-10-29 09:56:35
阅读次数:
29
Entropy, relative entropy and mutual information. Entropy \[ H(X) = -\sum_{x} p(x) \log p(x), \] 熵非负, 且当且仅当$X$确定性的时候为有最小值0, 即$P(X=x_0)=1$. Proof: 由$\l ...
分类:
其他好文 时间:
2020-10-22 23:14:38
阅读次数:
44
https://www.cnblogs.com/sxmny/p/10441346.html select * from information_schema.`PROCESSLIST` where info is not null; 或者 -- use information_schema; -- ...
分类:
数据库 时间:
2020-10-22 23:12:27
阅读次数:
46
一.ASCII编码 ASCII(American Standard Code for Information Interchange,美国标准信息交换代码)是基于拉丁字母的一套电脑编码系统,主要用于显示现代英语和其他西欧语言。它是现今最通用的单字节编码系统,并等同于国际标准ISO/IEC 646。 ...
分类:
其他好文 时间:
2020-10-22 22:55:30
阅读次数:
21