第42页
-
Oracle中复制一张表的结构,用sql语句复制一张表结构
创建一个表new_table和old_table表结构一样(只复制表结构,没有old_table的记录) create table new_table as select * from old_table where 1=0; 创建一...
gtxyzz 2023.02.27 1115浏览 0 -
查看oracle用户执行的sql语句历史记录
一时失误,删除了PL/SQL窗口数据的历史,然后半个半个星期写的代码全部白费,但是想起来之前执行过,所以可以通过查询历史记录找回。以下为找回代码: 平时用得少,保存一下以后查看。 select * from v$sqlarea t wh...
kavin 2023.02.27 1059浏览 0 -
Mysql 的七种 join sql 编写
首先创建两张表 CREATE TABLE `t_user` ( `id` bigint(16) NOT NULL AUTO_INCREMENT, `name` varchar(64) NOT NULL, `age` int(4)...
Molet 2023.02.27 1028浏览 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 1267浏览 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