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

変数が空白の場合、Where 句はありません

    OR を使用:

    select * from yourTable
    where @test = '' OR Agent = @test
      

    if @test null 値が付属しています ('' の代わりに) )、次を使用する必要があります:

    select * from yourTable
    where @test is null OR Agent = @test
      


    1. PHPを使用してmysqlに日時を挿入する方法

    2. ClassNotFoundException:oracle.jdbc.OracleDriver

    3. PHPは1048576文字のみを配列に格納します

    4. MySQLトランザクションをテストする方法は?