摘要:
一、基础篇1、连接到本地数据库db2 connect to <数据库名> 2、连接到远程数据库db2 connect to <数据库名> user <用户名> using <密码> 3、列出目前所有数据库(当前实例中)db2 list db directory 4、进入db2数据库命令行模式db2 阅读全文
摘要:
create table select from 和 insert into table select from都是用来复制表,两者的主要区别为: create table select from 要求目标表不存在,因为在插入时会自动创建。insert into table select from 阅读全文