MySQL
默金……
这个作者很懒,什么都没留下…
展开
-
mysql多表查询练习
新建表/* 数据导入: Navicat Premium Data Transfer Source Server : localhost Source Server Type : MySQL Source Server Version : 50624 Source Host : localhost Source Database : sqlexam Target Server Type : MySQL Target Server原创 2021-09-09 12:01:32 · 405 阅读 · 0 评论 -
远程连接mysql数据量
远程连接mysql数据量开发3306端口mysql -u root -p回车,输入密码回车,登录授权远程用户登录对所有 root 用户授权:GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root用户密码' WITH GRANT OPTION;对指定 IP 的 root 用户授权:GRANT ALL PRIVILEGES ON *.* TO root@'指定的IP地址' IDENTIFIED BY 'root用户密码' WITH原创 2020-07-27 13:35:33 · 230 阅读 · 0 评论 -
SQL语句多一个逗号引起的骚乱(1064 - You have an error in your SQL syntax; check the manual that corresponds to y)
SQL语句多一个逗号引起的骚乱(1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘)’ at line 1)多一个逗号的SQL语句INSERT INTO start_recording (RunTime,RunTime_int,Test_Batch,Test_Versi原创 2020-07-10 15:32:28 · 39580 阅读 · 2 评论 -
python+mysql中数据库表名为变量处理方式
python+mysql中数据库表名为变量处理方式#!/usr/bin/python3import pymysql ,re,jsonhost="localhost"user="root"password="root"DB="TC_alg_test"port=3306def Create_db(table_name): # 打开数据库连接 db = pymys...原创 2019-12-24 09:38:09 · 3279 阅读 · 5 评论 -
Navicat 查数据Mysql
Navicat 查数据SELECT * from zt_bug where closedBy=‘huangpeng’ ;原创 2019-12-01 19:19:57 · 933 阅读 · 0 评论