MySQL數據庫簡單使用(增刪改查)

MySQL數據庫簡單使用   查看所有庫:    show databases; 創建數據庫:    create database 庫名; 使用數據庫:      use 庫名;   在數據庫下創建表,創建字段:     create table 表名(id int, name varchar(50), sex int(1) ); create table 表名(字段名 屬性,字段名1 屬性1)
相關文章
相關標籤/搜索