mysql drop table, create table (with auto_increment)


mysql drop table, create table (with auto_increment)

DROP TABLE IF EXISTS server_user; CREATE TABLE server_user ( server_user_id INTEGER NOT NULL AUTO_INCREMENT, server_id INTEGER NOT NULL, customer_user_id INTEGER NOT NULL, reg_date INTEGER NOT NULL, PRIMARY KEY (`server_user_id`,`server_id`,`customer_user_id`) );...

mysql drop table, create table (with auto_increment)에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.


#IT·컴퓨터

원문링크 : mysql drop table, create table (with auto_increment)