查询保存URL路径 [英] Query for saving the url path

查看:54
本文介绍了查询保存URL路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在SQL Server 2005中编写查询以保存URL路径(用于文件)...请帮助我进行示例编码.....

How to write query for saving the url path (for the files) in sql server 2005...please help me with sample coding .....

推荐答案

我的评论仍然有效...

将url保存到表中的查询非常简单:
My comment is still current...

The query to save url into table is very simple:
INSERT INTO YourTableName ([UrlPathColumn])
    VALUES("UrlPath")



如果要从表中获取数据,请使用以下命令:



If you want to fetch data from table, use this:

SELECT [UrlPathColumn]
FROM YourTableName


这篇关于查询保存URL路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆