1:在sql语句中,临时表有两类,分别是局部(local)和全局(global)临时表,局部临时表只在其会话(事务)中可见,全局临时表可以被会话(事务)中的任何程序或者 模块访问 2:创建局部临时表 use db_sqlserver go create table #db_local_table ( id int, name varchar(50), age int, area int ) use db_sqlserver go create table #db_local_table ( i
-- 本存储过程有特殊执行循环数量的要求,是对security_market_history表进行修正 -- 判断存储过程是否存在 drop PROCEDURE if exists proc_security_market_history_update; CREATE PROCEDURE proc_security_market_history_update() begin ; -- 设置初始参数 day); -- 设置需要初始化的值 repeat -- 开启循环 drop table if e
CREATE TABLE t1(id varchar2(32) primary key,name VARCHAR2(32) ,age VARCHAR2(32) );comment on column t1.id is 'id';comment on column t1.name is '姓名';comment on column t1.age is '年龄';