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.
我刚开始使用 sql,我有一长串电子邮件,格式如下
xy@gmail.com jkk@gmail.com ghgh@gmail.com
我需要在每封电子邮件周围添加引号,并在结束引号后添加逗号,结果如下
'xy@gmail.com', 'jkk@gmail.com', 'ghgh@gmail.com',
我在 razorsql 中看到了一个可以自动执行此操作的函数,任何人都可以帮助我。
尝试像这样格式化您的 SQL 语句以获得您所追求的输出:
SELECT '''' + emailAddress + ''',' FROM users