gtxyzz 第9页
-
Oracle SQL Developer语言设置
在软件目录中搜索找到sqldeveloper.conf,加入 AddVMOption -Duser.language=en AddVMOption -Dus...
gtxyzz 2023.02.27 1093浏览 0 -
Oracle中复制一张表的结构,用sql语句复制一张表结构
创建一个表new_table和old_table表结构一样(只复制表结构,没有old_table的记录) create table new_table as select * from old_table where 1=0; 创建一...
gtxyzz 2023.02.27 1119浏览 0 -
Mysql远程连接报错:SQL Error (1130): Host ‘192.168.61.128’ is not allowed to connect to this MySQL server
通过SQLyog连接linux中的MySQL报错问题: SQL Error (1130): Host ‘192.168.0.18’ is not allowed to connect to t...
gtxyzz 2023.02.27 1275浏览 0 -
【MySQL】org.springframework.dao.TransientDataAccessResourceException: Error attempting to get column ‘create_time’ from result set. Cause: java.sql.SQLException: Zero date value prohibited ; Zero date
使用Mybatis plus的时候,查询select all,恰好报了异常 ; Zero date value prohibited; nested exception is java.sql.SQLException...
gtxyzz 2023.02.27 810浏览 0 -
mysql显示SQL语句执行时间
查看 MySQL 語法 詳細執行時間 與 CPU/記憶體使用量: MySQL Query Profiler MySQL 的 SQL 語法調整主要都是使用 EXPLAIN , 但是這個並沒辦法知道詳細的 Ram(Memory)/CPU 等使用...
gtxyzz 2023.02.27 914浏览 0