1.建立學生管理系統資料庫xscj
create detabase 資料庫名;
2.開啟資料庫
use 資料庫名; //建立資料庫之後,該資料庫不會自動成為當前資料庫需要用use來指定
3.建立表名
4.在表xs中增加「獎學金等級」列 ,並刪除表中的「姓名」列
alter table 表名
add 列名 ,
drop column 列名;
5.重新命名表
alter table 原表名 rename to 新錶名;
6.複製表
create table 新錶 like 參照表名; //建立乙個與參照表相同結構的表,不會複製內容
create table 新錶 as (select語句); //可以複製表的內容,不會複製索引和完整約束結構
7.刪除表
drop table if exists 表名;
if exists // 避免刪除的表不存在時出現錯誤資訊
8.顯示資料庫建立的資料庫檔案
show tables; //顯示已建立的資料表檔案
9.用describe語句檢視student表的列資訊
describe 表名;
10.檢視student表「學號」列的資訊
desc 表名 列名;
mysql 建立學生表
如果存在名為school的資料庫就刪除它 drop database ifexists school 建立名為school的資料庫並設定預設字符集為utf8 create database school default charset utf8 切換到school資料庫 use school 建立學...
mysql 學生管理系統
要求 orm 版的學生管理系統 功能介紹 講師檢視 1 檢視班級 2 建立班級 3 新增學員 4 建立課程 5 修改成績 6 簽到 7 返回 學員檢視 1 檢視成績 學員全部成績並排行 班級對學生 grades m2m students table grades m2m students base....
學生資訊管理操作
students 輸出語文成績不及格學生的人數 假設成績為百分制,及格分數為60分 failed chinese num len list filter lambda x x verbal 60,students print failed chinese num 輸出數學成績不及格學生的學號 姓名和...