- 新增移除類:
- 創建表單(沒有才創):
- create table if not exists table_name ( column1 , column2 );
- create table if not exists table_name ( column1 unique, column2 char );
- unique->唯一值,如果有相同,則不新增
- 刪除表單:
- drop table if exists table_name;
- 新增欄位 (SQL不允許一次新增多個欄位,必須一個一個加):
- alter table table_name add column column3 column_type
- 查詢類組:
- 表的所有內容:
select * from table_name; - 表內特定 column:
select column_1,column_2 from albums; - 表內特定column的名稱:(舉例,我要找這個表內 老師名稱內有 judy的所有資料)
select * from table_name where teacher like 'judy%';
沒有留言:
張貼留言