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.
我正在尝试构建一个插入语句,该语句将包含一个具有有效“?”的 URL 字符串。在里面。我正在使用 Teradata SQL Assistant (Windows XP),它正在尝试将其转换为参数。
有没有办法覆盖它并将其视为字符值?
示例 URL: https ://www.location.com/livelink.exe?func=ll
转到页面上的查询选项卡Tools -> Options...并取消选中标有“允许在查询中使用命名参数”的框。以下是我使用的设置:
Tools -> Options...
这将防止问号被视为提示并处理如下插入语句:
insert into yourdb.yourtable (url) values ('https://www.location.com/livelink.exe?func=ll')