MySQL常用命令

#登陸指定用戶、密碼、IP、端口、邏輯庫 mysql -utest1 -ptest1 -h10.24.1.65 -P3306 -DTESTDB1 #創建表,同時指定好列名和屬性 create table testtable ( id int(8),name char(8)); #給表中插入數據 insert into testtable values("1","liuxw"); #查詢表 sele
相關文章
相關標籤/搜索