摘要:
开发环境 Windows 10 x64,已安装node和npm,其中node是通过nvm管理的,参考:https://www.cnblogs.com/PrintY/p/16892116.html 1、安装脚手架 npm install -g @angular/cli 2、测试安装结果 ng vers 阅读全文
摘要:
-- 创建函数 CREATE FUNCTION del_ora_table() RETURNS void AS $$ DECLARE tmp VARCHAR(512); DECLARE names CURSOR FOR select tablename from pg_tables where sc 阅读全文
摘要:
--创建索引 CREATE INDEX index_statistics1 ON dbo.integral (deleted,pid,created); --删除索引(需要选中dbo) DROP INDEX index_statistics5 --查询索引 SELECT * FROM pg_inde 阅读全文