Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 SQLite3 CREATE TABLE 语句中,我可以使用正则表达式来强制执行特定的约束吗?具体来说,我试图要求输入的 URL 有效。我知道除了使用正则表达式之外还有其他方法可以做到这一点,但是由于我的项目结构,这是我需要的方法。
只有在安装了用户定义的函数后才能使用正则表达式REGEXP;SQLite 默认没有。
REGEXP
但如果你有它,你也可以REGEXP在CHECK约束中使用。
CHECK