create database myDB01;
go
create database myDB02;
go
use myDB01;
go
create table MyTbl01(
idx int not null,
name char(10) not null,
phone varchar(50) null,
email varchar(100) null,
address varchar(200) null
);
select * from MyTbl01
'딥러닝 모델 설계 > Azure' 카테고리의 다른 글
azure ubuntu ftp server setting (0) | 2019.05.04 |
---|---|
윈도우 cmd 명령어 (0) | 2019.04.23 |