• 常用代码段【备忘】


    html空白模版

    复制代码
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
      <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title>HTML template</title>
        <link href="http://blueprintcss.org/blueprint/screen.css" rel="stylesheet" type="text/css" />
        <style type="text/css">
        
    </style>
         <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js" type="text/javascript"></script>
        <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js" type="text/javascript"></script>
      </head>
      <body>
        <div id="container">
        </div>
        <script type="text/javascript">
        </script>
      </body>
    </html>
    复制代码

    SQL测试输入插入:

    复制代码
     declare @index int;
     set @index = 0;
     
     while(@index < 100011)
     begin
      INSERT INTO [Northwind].[dbo].[Categories]
               ([CategoryName]
               ,[Description]
               ,[Picture])
         VALUES
               (
                'bangq'
               ,'bangq_description'
               ,'jasdfasldkfjasidf')
       
       
        set @index = @index + 1

     end 

     
    复制代码


    SQL中更改主键  :set  IDENTITY_INSERT  table_name  on 

     

     

  • 相关阅读:
    python3 bs4库
    python3 requests 库学习
    thinkPHP远程代码执行漏洞
    centos 数据库忘记密码
    centos 安装 nfs
    中间人工具---MITMF
    微信公众号授权获取codequ
    vue element 倒计时
    vue常见登陆注册按钮切换效果
    VUE3.0重新定向
  • 原文地址:https://www.cnblogs.com/jazzka702/p/2703297.html
Copyright © 2020-2023  润新知