2010年2月15日のブックマーク (3件)

  • Lovely Charts

    Whether you are looking for flowcharts, sitemaps, business processes, organization charts, wireframes or other diagrams to use on your website, we can help! Visualization is a powerful medium of communication. What can be expressed in thousands of words can be easily conveyed through one image or diagram. Diagrams are pictorial or graphical presentation of information. They can be used for a pleth

    Lovely Charts
    koaloha2006
    koaloha2006 2010/02/15
    フローチャート図などを作成できるWebサービス
  • DELETE - オラクル・Oracle SQL 入門

    SQL 入門 (DMLの基形式:DELETE) レコード削除 ( DELETE: 1レコードの削除、全レコードの削除) テーブルからデータを選択、レコードの削除。 単一レコードの削除 -- USER_ID = '0020' OR  USER_ID ='0019' を削除 DELETE FROM USER_MASTER WHERE USER_ID IN ('0020', '0019'); -- -- エスケープ文字を使って削除 DELETE FROM USER_MASTER WHERE USER_NAME LIKE '%dummy\%' ESCAPE '\'; 全データの削除 DELETE FROM USER_MASTER ; ビューを使った削除(インラインビューを使った削除) UPDATE と同様にインラインビューによる削除が可能 DEPT_NOが '1002' 所属の全員を削除する。

    koaloha2006
    koaloha2006 2010/02/15
    レコードの削除
  • Oracle・Tips集

    ●表の一覧 SQL# select * from tab; ●表の項目一覧 SQL# desc 表名;(;は省略可) ●インデックスの一覧 SQL# select * from user_ind_columns; ※指定した表のインデックスのみ、表示することもできます。 SQL# select column_name from user_ind_columns where table_name = '表名'; ●ユーザ一覧 SQL# select username from user_users; ●データベースの文字コード SQL# select * from NLS_DATABASE_PARAMETERS where PARAMETER = 'NLS_NCHAR_CHARACTERSET'; 表のコピー方法 create tableコマンドで表のコピーができます。 ただし、制約条件は、

    koaloha2006
    koaloha2006 2010/02/15
    Oracle Tips