mysql怎麼在資料庫裡新增表

2021-08-10 23:12:38 字數 723 閱讀 1035

1樓:匿名使用者

create table table_name(裡面一堆欄位自己看著辦吧);

括號要英文狀態下的

新增了表之後就可以新增內容了呀

insert into table_name(這裡可要可不要了) values(這裡對應的欄位資料);

2樓:唯吾獨尊的工具

#建立customer表:

create table customers(

id int not null auto_increment,

name char(20) not null,

address char(50) null,

city char(50) null,

age int not null,

love char(50) not null default 'no habbit',

primary key(id)

)engine=innodb;

#select last_insert_id();這個函式可以獲得返回最後一個auto_increment值.

#預設值:default 'no habbit',

#引擎型別,多為engine = innodb,如果省略了engine=語句,則使用預設的引擎(myisam)。

參考

jsp向mysql資料庫新增資料

你的txt表結構是什麼樣的,password欄位是什麼型別?insert into txt name,password values 252 262 這句sql直接在mysql裡執行能否正常寫入?看你的txt表中的password欄位是什麼格式的,如果是char的或者是varchar的這句應該這樣寫...

mysql資料庫怎麼匯出單個表結構

在命令列下mysql的資料匯出有個很好用命令mysqldump,它的引數有一大把,可以這樣檢視 mysqldump 最常用的 mysqldump uroot pmysql databasefoo table1 table2 foo.sql 這樣就可以將資料庫databasefoo的表table1,t...

mysql資料庫題目查詢student表中每個學生的姓名

select date format now y date format sbirthday,y date format now 00 m d date format sbirthday,00 m d as age from student 查出du 精確zhi dao。自己專 加名字屬 selec...