(Oracle DB) - 2. CREATE TABLE

kynoh·2023년 3월 2일
0

Oracle Database

목록 보기
3/30

oracle db

/* Create Table */
CREATE TABLE ex2_1(
	column1 char(10),
	column2 VARCHAR2(10),
	column3 NVARCHAR2(10),
	column4 NUMBER
);
	/*
	#	Max size of table_name, column_name is 30 bytes
	#	table_name, column_name cannot be identified by keywords
	#	table_name, column_name can be identified with alphanumeric, '_' '$' '#' except first character
	#	First character must be a alphabet
	#	Max amount of columns in a table is 255
	*/
profile
On-orbit

0개의 댓글

관련 채용 정보