检查有效的 SQL 列名称

发布于 2024-10-17 11:34:22 字数 50 浏览 1 评论 0原文

如何在 php 中检查字符串是否是 sql 语句的有效兼容列名? 只是一个字符串匹配。

How would you check in php that a string is a valid compatible column name for a sql statement?
just a string match.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

香草可樂 2024-10-24 11:34:22

最终,每个字符串一旦用双引号括起来,就是一个有效的列名(MySQL 可能不遵守该规则,具体取决于配置。在默认安装中,它不使用双引号作为标识符引号)。

但是,如果您想要跨平台(正如不同的 DBMS 标签所建议的那样),您应该检查最小公分母。

PostgreSQL 手册对此有一个很好的定义

SQL 标识符和关键字必须以字母(az,也可以是带变音符号的字母和非拉丁字母)或下划线 (_) 开头。标识符或关键字中的后续字符可以是字母、下划线、数字 (0-9) 或美元符号 ($)。请注意,根据 SQL 标准的字母,标识符中不允许使用美元符号,因此它们的使用可能会降低应用程序的可移植性

因此,您应该使用正则表达式检查以下内容:

  • 以字母开头
  • 仅包含字符(字母)和数字,并且下划线

因此,像下面这样的正则表达式应该涵盖这一点:

^[a-zA-Z_][a-zA-Z0-9_]*$

由于 SQL 不区分大小写(除非使用双引号)使用)允许使用大写和小写字母。

Ultimately every string is a valid column name once it is enclosed in double quotes (MySQL might not obey to that rule depending on the configuration. It does not use double quotes as identifier quotes in the default installation).

However if you want to be cross platform (as the different DBMS tags suggest), you should check for the least common denominator.

The PostgreSQL manual has a nice definition of this:

SQL identifiers and key words must begin with a letter (a-z, but also letters with diacritical marks and non-Latin letters) or an underscore (_). Subsequent characters in an identifier or key word can be letters, underscores, digits (0-9), or dollar signs ($). Note that dollar signs are not allowed in identifiers according to the letter of the SQL standard, so their use might render applications less portable

So you should check the following with a regular expression:

  • starts with a letter
  • only contains characters (letters) and digits and an underscore

So a regular expression like the following should cover this:

^[a-zA-Z_][a-zA-Z0-9_]*$

As SQL is not case sensitive (unless double quotes are used) upper and lower case letters are allowed.

昵称有卵用 2024-10-24 11:34:22

您可以使用 MySQL 查询,如下所示从特定表中获取字段:

SHOW FIELDS FROM tbl_name

然后使用一些简单的 PHP:

$string_to_check = 'sample';
$valid = false;
$q = mysql_query("SHOW FIELDS FROM tbl_name");
while($row = mysql_fetch_object($q)) {
  if($row->Field == $string_to_check) {
     $valid = true; break;
  }
}
if($valid) {
  echo "Field exists";
}

You can use the MySQL query as follows to get the fields from a particular table:

SHOW FIELDS FROM tbl_name

and then some simple PHP:

$string_to_check = 'sample';
$valid = false;
$q = mysql_query("SHOW FIELDS FROM tbl_name");
while($row = mysql_fetch_object($q)) {
  if($row->Field == $string_to_check) {
     $valid = true; break;
  }
}
if($valid) {
  echo "Field exists";
}
零度℉ 2024-10-24 11:34:22

使用

使用显示列或描述查询。
然后从结果中进行验证。

Use

Either use show columns or describe query.
and than validate from the result.

白日梦 2024-10-24 11:34:22

如果我有同样的问题,我会在特定的数据库文档中搜索特定的字符列表,然后以正则表达式的形式实现它。

但我永远不会遇到这样的问题,因为基本的拉丁字符、数字和下划线足以命名我使用的任何字段。所以我会保持很好的可移植性和可维护性。

If i'd had the same question, I'd search particular database documentation for the certain character list and then implement it in the form of regexp.

But I would never face such a question because basic latin characters, numbers and underscore are more than enough to name any field I use. So I'd keep great portability and maintainability.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文