08 2020 档案
摘要:/* Windows服务 */ -- 启动MySQL net start mysql -- 创建Windows服务 sc create mysql binPath= mysqld_bin_path(注意:等号与值之间有空格) /* 连接与断开服务器 */ mysql -h 地址 -P 端口 -u 用
阅读全文
摘要:#hehe 表中添加ISXP 字段 alter table hehe add( ISXP varchar2(1) ); COMMENT ON COLUMN "hehe"."ISXP" IS '是否信披过0已信披1未信披';
阅读全文
摘要:select TABLE_NAME from user_tables; -- 获取表 select * from user_tab_comments; -- 获取表注释 select * from User_Col_Comments; -- 获取字段注释 -- 导出文档 SELECT t.TABLE
阅读全文