close

SELECT * FROM table_name;

查詢 table_name 所有資料


SELECT * FROM table_name WHERE column_name = value;

查詢 table_name 裡 column_name = value 的所有資料

 

INSERT INTO table_name (column1, column2, column3) VALUES (value1, value2, value3);

在table_name表中插入一行,並將value1、value2和value3分別插入到column1、column2和column3列中


UPDATE table_name SET column_name = new_value WHERE condition;

將column_name列中符合條件的值更新為new_value


DELETE FROM table_name WHERE condition;

將從table_name表中刪除符合條件的行

arrow
arrow
    文章標籤
    ORACLE
    全站熱搜
    創作者介紹
    創作者 阿寶子 的頭像
    阿寶子

    被程式耽誤的遊戲師

    阿寶子 發表在 痞客邦 留言(0) 人氣()