unote 書けば書くほどに

20230124

public void DEL(string repTN,string xbbTN,string whereON)
{
  Console.WriteLine("■DELETE実行…\r\n");

  string strSql_DEL = 
    "delete from " + repTN +
    " where not exists (select 'x' from " + xbbTN + 
    " where " + whereON + ")";

  strSql = strSql_DEL;
  DB(strSql);

  Console.WriteLine(strSql+"\r\n");
  Console.WriteLine("完了");
  Console.WriteLine()
}