如果SQL Server中已存在任何功能,我不想为此创建自定义功能
输入字符串:This is my string to convert
预期输出:This Is My String To Convert
我已经为我的项目创建了视图,现在我想为速度目的优化它们...我如何识别视图可以优化?索引对此有用....
let's say the following example...
SELECT dbo.vw_WebInventory.skref AS SaleID, dbo.vw_WebInventory.lot_number AS LotNumber, dbo.vw_WebInventory.Description,
dbo.vw_WebInventory.Image AS HasImage, dbo.vw_WebInventory.Sold, dbo.vw_WebInventory.Withdrawn, dbo.vw_WebTopBids.TopBid,
ISNULL(dbo.vw_WebInventory.Mins_Extend_y, 0) AS BidTimeExtend, dbo.Sale.SaleTypeID, dbo.Sale.ClosingDate, dbo.vw_WebInventory.ExDate,
dbo.vw_WebInventory.CurrDate, CASE WHEN vw_WebInventory.ExDate > ISNULL(vw_WebInventory.LotClosingDate, Sale.ClosingDate)
THEN 1 ELSE 0 END AS ShowBidMessage
FROM dbo.vw_WebInventory INNER JOIN
dbo.Sale ON dbo.vw_WebInventory.skref = dbo.Sale.SaleID LEFT OUTER JOIN
dbo.vw_WebTopBids ON dbo.vw_WebInventory.skref = dbo.vw_WebTopBids.CatNumber AND dbo.vw_WebInventory.lot_number = dbo.vw_WebTopBids.LotNumber
Run Code Online (Sandbox Code Playgroud)
其中vm_webTopBids和vm_WebInventory是两个不同的视图......是否可以优化此视图?
我想知道从下面两个方面哪个更好......
任何人都可以解释它有何不同?
我必须将不包含单选按钮的单元格中的单元格合并到包含单选按钮的单元格.
这里是界面的链接
http://i839.photobucket.com/albums/zz316/girish_kolte/untitled.jpg
我有用户类列表,但现在我必须将其作为对象列表返回,我尝试转换它,但它给我错误.无法隐式转换.
可能重复:
我在哪里可以找到开始学习jQuery的教程?
考虑到我是jQuery技术的新手,开始使用它的最佳方法是什么?