码迷,mamicode.com
首页 >  
搜索关键字:create datafile    ( 30138个结果
一张表三个字段ID科目成绩,查出所有科目成绩都60以上的ID
这个题目比较坑,没有描述清楚 create TABLE #TB ( ID INT, 科目 int, 成绩 int ) select * from #TB insert into #TB(ID,科目,成绩) select 1,66,66 union select 1,55,55 union selec ...
分类:其他好文   时间:2020-12-01 12:15:35    阅读次数:4
C# 插件编写
//加载插件 private void LoadPlugins() { string path = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "addons"); //搜索该目录下的所有 ...
分类:Windows程序   时间:2020-12-01 11:54:17    阅读次数:14
MySQL之索引优化
一、Table Demo CREATE TABLE `employees` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(24) NOT NULL DEFAULT '' COMMENT '姓名', `age` int(11) NOT N ...
分类:数据库   时间:2020-11-30 15:26:05    阅读次数:7
肌电信号的时域/频域分析-更新中
function varargout = tezheng(varargin) gui_Singleton = 1; gui_State = struct('gui_Name', mfilename, ... 'gui_Singleton', gui_Singleton, ... 'gui_Openi ...
分类:移动开发   时间:2020-11-30 15:23:27    阅读次数:10
一、初识MySQL
(数据库DataBase,DB)是一个长期存储在计算机内的、有组织的、有共享的、统一管理的数据集合,在关系数据库中,数据库表是一系列二维数组的集合。 数据定义语言(DDL):DROP、CREATE、ALTER 数据操作语言(DML):INSERT、UPDATE、DELETE 数据查询语言(DQL): ...
分类:数据库   时间:2020-11-26 14:53:45    阅读次数:8
Delphi TWebBrowser[7] 获取网页图片(静态和动态)
Delphi TWebBrowser[7] 获取网页图片(静态和动态) 1、静态图常用方法: uses WinInet function GetLocalFileNameFromIECache(url:string; var LocalFileName:string):DWORD; var D: C ...
分类:Windows程序   时间:2020-11-26 14:50:10    阅读次数:11
序列化和反序列化
# Create your views here.import jsonfrom django.shortcuts import renderfrom django.shortcuts import renderfrom django.http import HttpResponse, HttpRe ...
分类:其他好文   时间:2020-11-26 14:35:15    阅读次数:6
13.mysql
一、约束 1)主键 主键约束=非空约束+唯一约束 主键可以是一个列或者多个列 1)创表添加多个列作为主键 create table score1( sid int not null, cid int not null, PRIMARY key(sid,cid) ); 2)删除主键约束 alter t ...
分类:数据库   时间:2020-11-26 14:30:23    阅读次数:8
linux 设置cpu占用率
1,环境安装 ## #编译环境 yum groupinstall -y "Development Tools" ##cat cpu_load #以下为代码 #include <iostream> #include <pthread.h> #include <time.h> #include <mat ...
分类:系统相关   时间:2020-11-26 14:19:38    阅读次数:10
jsx demo
多层嵌套 [] h->createElement <script type="text/jsx"> export default { name: "demo", render(h) { return h( "el-row", { props: { level: 1, value: this.valu ...
分类:Web程序   时间:2020-11-26 14:15:41    阅读次数:7
30138条   上一页 1 ... 54 55 56 57 58 ... 3014 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!