select * from emp;
#注释#---------------------------#----命令行连接MySql---------#启动mysql服务器net start
mysql#关闭net stop mysql#进入mysql -h 主机地址 -u 用户名 -p 用户密码#退...
分类:
数据库 时间:
2014-04-30 04:24:45
阅读次数:
671
UML diagrams compliment inline documentation
(javadoc) and allow to better explore / understand a design. Moreover, you can
print and bring them to ta...
分类:
编程语言 时间:
2014-04-30 03:48:50
阅读次数:
716
Given preorder and inorder traversal of a tree,
construct the binary tree.Note:You may assume that duplicates do not exist in
the tree.思路:由前序遍历数组和中序遍历...
分类:
其他好文 时间:
2014-04-30 02:20:33
阅读次数:
366
第一种方法:跳转到当前页:location.href为跳转当前的页面第二种方法:window.open为打开新窗口跳转跳转到新页面:
分类:
其他好文 时间:
2014-04-30 01:56:00
阅读次数:
497
锁类型例子updateselect type,name from
v$lock_type;SQL> create table t(id int primary key);表已创建。SQL> insert into
t values(1);已创建 1 行。SQL> commit;提交完成。SQL> u...
分类:
其他好文 时间:
2014-04-29 22:57:24
阅读次数:
591
这里仅仅是以putty作为演示消息发送机制和控件搜索机制,不完善,待更新#include"stdafx.h"#include #include using
namespace std;HWND FindTextBox(HWND hWnd,DWORD select_edit=1){ HWND hEdi...
分类:
其他好文 时间:
2014-04-29 22:20:23
阅读次数:
587
我的MYSQL学习心得(三)我的MYSQL学习心得(一)我的MYSQL学习心得(二)查看字段的长度SQLSERVERUSE [sss]GOSELECT
LEN([NAME]) FROM [dbo].[aa]MYSQLCREATE TABLE tmp13(vb VARBINARY(10))INSERT...
分类:
数据库 时间:
2014-04-29 22:17:25
阅读次数:
561
这个问题困扰了挺久,网上找了挺多方法 都太好使。分几种情况。1.如果查询结果
转换,那比较容易。var q = from c in db.Customers where c.Country == "UK" || c.Country ==
"USA" select new { ...
分类:
其他好文 时间:
2014-04-28 11:56:12
阅读次数:
620
统计SQL执行时间和次数的语句:SELECT top 50qt.text AS
SQL_text ,SUM(qs.total_worker_time) AS total_cpu_time,SUM(qs.execution_count) AS
total_execution_count,SUM(qs....
分类:
数据库 时间:
2014-04-28 11:14:38
阅读次数:
640
数据表的连接有: 1、内连接(自然连接): 只有两个表相匹配的行才能在结果集中出现
2、外连接: 包括 (1)左外连接(左边的表不加限制) (2)右外连接(右边的表不加限制) (3)全外连接(左右两表都不加限制)
3、自连接(连接发生在一张基表内) select a.studentno, a.stu...
分类:
其他好文 时间:
2014-04-28 11:08:47
阅读次数:
559