創作

2015年6月4日 星期四

SQLite 語法紀錄


  1. 新增移除類:

    • 創建表單(沒有才創):
      • create table if not exists table_name ( column1 , column2 );
      • create table if not exists table_name column1 uniquecolumn2 char ); 
        • unique->唯一值,如果有相同,則不新增
    • 刪除表單:
      • drop table if exists table_name;
    • 新增欄位 (SQL不允許一次新增多個欄位,必須一個一個加):
      • alter table table_name add column column3 column_type

  2. 查詢類組:
    1. 表的所有內容:
      select * from table_name;
    2. 表內特定 column:
      select column_1,column_2 from albums;
    3. 表內特定column的名稱:(舉例,我要找這個表內 老師名稱內有 judy的所有資料)
      select * from table_name where teacher like 'judy%';


沒有留言:

張貼留言