2019-01-27から1日間の記事一覧

テーブル作成

DB

Oracle create table tab1(col1 int); create table tab2(col1 int,col2 varchar2(10), col3 date);alter table tab2 add constraint tab2p primary key (col1); MySQL --テーブル確認show tables;show tables from test;show tables in test;show full tabl…