sql >> データベース >  >> RDS >> Oracle

英語のテキストではないデータを検索する

    with test as
    (
    select 'hello good morning' txt from dual 
    union select 'Bad weather' from dual
    union select '测试 ' from dual
        union select 'L''Inhêrit ' from dual
        union select 'هلا' from dual
    )
    select *
    from test
    where txt != asciistr( txt )
    


    1. 同じテーブル内からのMYSQLアップデート

    2. flywaycleanはスケジューラージョブまたはプログラムをドロップしていません

    3. MySQLは列が空でない場所を選択します

    4. mysql INSERTがいつ終了したかを知る方法(複数の接続)