摘要:
alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss'; 执行后以后查询所有时间都按这个格式显示 阅读全文
摘要:
SQL server, which would fetch top 3 records from CUSTOMERS table: If you are using MySQL server, then here is an equivalent example: If you are using 阅读全文
摘要:
最常用的存储引擎 innodb MyISAM MyISAM,这种效率高,不支持事务,不支持外键,每个表有单独的存储文件(多个),方便管理。 innodb,一般默认的都是innodb,效率也不低,支持事务,支持外键,只有innodb支持事务和外键。 其一般默认用共享表空间,用一个文件存储数据,ibda 阅读全文