我想检查行是否存在,但不告诉列名,而只是告诉它值。 IE浏览器。
+------+------+------+
|field1|field2|field3|
+------+------+------+
| abc | cba | val |
+------+------+------+
SELECT * FROM myTable WHERE ... = (SELECT 'abc', 'cba', 'val')
有可能吗?
我正在用php写一个函数,如果这种行不存在,我想添加一行。函数将使用n
个参数,即
addNewRowIfDoesNotExist('table1', 'abc', 'cba', 'val');
我不想修改函数的名称,但是我需要检查表中是否存在这样的行。所以我没有传递列名。因此,如何在不告知col名称的情况下检查行是否存在?
谢谢
迈克
答案 0 :(得分:-1)
感谢您的评论。我已经在网上找到了。
check if two "select"s are equivalent
http://www.mysqltutorial.org/mysql-minus/
谢谢。
迈克
如果您想了解我的意思,那您就可以了:
function insertRecordIntoTableIfNotExist()
{
if (func_num_args() < 2)
exit("Too few arguments at insertRecordIntoTableIfNotExist()<br>");
$str = changeTableIntoStringWithCommasAndQuotes(func_get_args());
$firstComma = strpos($str, ",");
$tableName = substr($str, 0, $firstComma);
$tableName = substr($tableName, 1, strlen($tableName) - 2);
$rest = substr($str, $firstComma + 1);
$result = executeQuery("SELECT " . $rest . " MINUS SELECT * FROM " . $tableName . "_v;");
if ($result != FALSE)
if (hasRows($result))
return;
if (executeQuery("INSERT INTO " . $tableName . " VALUES(NULL, " . $rest . ");") == FALSE)
{
printWrongQuery();
exit("Error while inserting at insertRecordIntoTableIfNotExist()<br>");
}
}
在运行此功能之前,您需要指定一个新的视图。我的桌子排在第一位id
,因此,就我而言,我不接受它。