摘要:
表结构现在有客户表、订单表、图书表、作者表, 客户表Customer (id customer_name)订单表Order (id order_name customer_id book_id)图书表 (id book_name author_id)作者表 (id author_name)怎么来确定 阅读全文
摘要:
一、PHP7安装Swoole扩展 PHP swoole 扩展下载地址 Github:https://github.com/swoole/swoole-src/tags php官方扩展库:http://pecl.php.net/package/swoole 开源中国:http://git.oschin 阅读全文
摘要:
出现这个问题:ERR: SQLSTATE[HY000]: General error: 1728 Cannot load from mysql.proc. The table is probably corrupted 执行:mysql_upgrade -u root -p 阅读全文
摘要:
mysql5.7 关于密码问题 报错: ERROR 1862 (HY000): Your password has expired. To log in you must change it using a client that supports expired passwords. 翻译: 错误 阅读全文
摘要:
一般这个错误是由密码错误引起,解决的办法自然就是重置密码。 假设我们使用的是root账户。 1.重置密码的第一步就是跳过MySQL的密码认证过程,方法如下: #vim /etc/my.cnf(注:windows下修改的是my.ini) 在文档内搜索mysqld定位到[mysqld]文本段:/mysq 阅读全文
摘要:
CREATE TABLE `base_user_service` ( `user_service_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `service_id` int(1 阅读全文
摘要:
1、vi /etc/yum.repos.d/mongodb-org.repo [mongodb-org-4.0] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/4 阅读全文
摘要:
1、样例数据 { "_id" : ObjectId("5fa13fb76c3107345a82c047"), "_class" : "java.util.HashMap", "date" : "2020-11-03", "result" : "命中失败", "activityCode" : "TES 阅读全文
摘要:
var buttons = document.getElementsByClassName("next_button___YGZWZ"); setInterval(function() { var button = buttons[0]; if(typeof(button) != 'undefine 阅读全文
摘要:
upstream nginx_test{ server 192.169.63.101:80; server 192.169.63.102:80; hash $uid; } server{ listen 8080; server_name www.aa.com; if($request_uri ~* 阅读全文