keywords.result

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· RESULT 代码 · 共 32 行

RESULT
32
字号
drop table if exists t1;create table t1 (time time, date date, timestamp timestamp,quarter int, week int, year int, timestampadd int, timestampdiff int);insert into t1 values ("12:22:22","97:02:03","1997-01-02",1,2,3,4,5);select * from t1;time	date	timestamp	quarter	week	year	timestampadd	timestampdiff12:22:22	1997-02-03	1997-01-02 00:00:00	1	2	3	4	5select t1.time+0,t1.date+0,t1.timestamp+0,concat(date," ",time),t1.quarter+t1.week, t1.year+timestampadd,  timestampdiff from t1;t1.time+0	t1.date+0	t1.timestamp+0	concat(date," ",time)	t1.quarter+t1.week	t1.year+timestampadd	timestampdiff122222	19970203	19970102000000	1997-02-03 12:22:22	3	7	5drop table t1;create table events(binlog int);insert into events values(1);select events.binlog from events;binlog1drop table events;create table t1 (connection int, b int);create procedure p1()begindeclare connection int;select max(t1.connection) into connection from t1;select concat("max=",connection) 'p1';end|insert into t1 (connection) values (1);call p1();p1max=1drop procedure p1;drop table t1;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?