GoogleDriveオフライン
これは、もう便利です!
テーブル 'xxxxx'
- テーブルを修正できません。
テーブル 'dbo.xxxxx' を 削除 できません。レプリケーションに使用されています。
alter table [対象テーブル名] alter column [対象フィールド名] int;
sp_removedbreplication [ [ @dbname = ] 'dbname' ][ , [ @type = ] type ]
$("セレクタ").focusout(function() { settimeout(function() { $("セレクタ").focus(); }, 0); });
$("button").prop("disabled", true); $("input[type='submit'].prop("disabled", true);
$userAgent = env("HTTP_USER_AGENT"); if (mb_ereg('MSIE', $userAgent)) { preg_match("/(MSIE)(\s([\d]+))/is", $userAgenet, $versionToken); if ((int)$versionToken[3] >= 7) { // IE7以上のときの処理 } }
<script>
$(function() {
$("セレクタ").change(function() {
// ここにonchangeの処理を書くといいよ
});
});
</script>
Severity: Notice --> Undefined index: query /var/www/html/foo/application/libraries/xajax/xajax.php 930
$sURL.= $aURL['path'].@$aURL['query'];
As Far As I Know 「私が知っている限りでは」という英語の省略記法らしいです。
$foo = (指定した日)
$bar = (○○ヶ月前)
$dt = new DateTime($foo);
// 指定した日の$barヶ月前
$dt->modify(-($bar) - 1) . 'month'); ……(a)
// その月の月始の日
$dt->modify('first day of this month'); ……(b)
$dst = $dt->format('Y-m-d');
WHERE foo <> 1 AND foo <> 2 ……(a)CakePHP2のfind()メソッドを使用するとき、こんな感じで条件を書いて
$conditions = array('foo <> ' => 1, 'foo <> ' => 2);どうも思った結果が取れない???
WHERE foo <> 2となっています。
$conditions = array('foo NOT ' => (1, 2));こうすると IN句を生成します。こんなふうに、
WHERE NOT IN (1, 2) ……(b)これで思った結果が取得できました。