摘要:
1. 查看自增值 SELECT Auto_increment FROM information_schema.TABLES WHERE Table_Schema= 'database' AND table_name= 'tableName' 2.设置自增值 alter table 'tableNam 阅读全文
摘要:
1、oracle查询数据库密码哪一天过期 select username,account_status,expiry_date,profile from dba_users;其中expiry_date即是过期的时间 2、查询数据库密码有效期 select * from dba_profiles s 阅读全文
摘要:
1. 跨域解释 1.1 怎么知道我遇到了跨域问题 如果项目没做前后端分离,是不会有跨域问题的。前后端分离的项目中,前端调用后台服务时,报错 No 'Access-Control-Allow-Origin' header is present on the requested resource,你就是 阅读全文