zoukankan      html  css  js  c++  java
  • sharepoint 通过数据库擅长列表项

    select *
    from [dbo].[AllLists] where tp_Title='Pages' and tp_WebId='68BDFC9A-4E0C-425E-9985-573CD67166A4'

    select * from [dbo].[AllWebs] where SiteId='0049424B-5892-426C-9051-AE4050FE5C61'--FullUrl='CN/Announcements/Workforce'

    SELECT *
    FROM AllUserData
    where tp_ListId='DD5FB08C-384C-45EE-B51C-5EEE6204BD78' and tp_Created>='2015-11-18' and tp_Created<'2015-11-19' --order by tp_Created desc

    and tp_DocId='FB44F2F9-40F9-416D-9D49-54FBB3D49B6A'

    --delete FROM AllUserData where tp_ListId='bc868647-114f-4007-ad8d-6554e500b877' and tp_DocId='FB44F2F9-40F9-416D-9D49-54FBB3D49B6A'

    --order by tp_Created desc

    SELECT * FROM AllUserData where tp_ListId='DD5FB08C-384C-45EE-B51C-5EEE6204BD78' and tp_ID=44

    --delete FROM AllUserData where tp_ListId='DD5FB08C-384C-45EE-B51C-5EEE6204BD78' and tp_ID=44

    SELECT d.nvarchar1 as ChineseName,
    d.nvarchar3 as EnglishName,
    d.datetime1 as FoundingDate,
    d.float1 as Area,
    d.float2 as Population
    FROM AllUserData d
    where tp_ListId='bc868647-114f-4007-ad8d-6554e500b877'

    SELECT top 10 d.nvarchar1 as ChineseName,
    d.nvarchar3 as EnglishName,
    d.datetime1 as FoundingDate,
    d.float1 as Area,
    d.float2 as Population,tp_Created
    FROM AllUserData d
    where tp_ListId='bc868647-114f-4007-ad8d-6554e500b877' and d.tp_DeleteTransactionId=0 order by tp_Created desc

  • 相关阅读:
    string基本字符系列容器(一)
    HDU 1541 star (树状数组)
    NKOI 1321--数列操作问题(裸BIT)
    树状数组(BIT)初学
    vector向量容器
    C++ STL概述
    2015年,为ACM奋斗的一年
    kuangbin带你飞,矩阵(简单数学推导题)
    hust 1009 Sum the K-th
    hust 1223 Friends
  • 原文地址:https://www.cnblogs.com/hqbird/p/4976788.html
Copyright © 2011-2022 走看看