摘要:
SELECT in_dpt, COUNT(in_dpt) AS emp_count -> FROM employee GROUP BY in_dpt; SELECT in_dpt, COUNT(in_dpt) AS emp_count FROM employee -> GROUP BY in_dpt 阅读全文
摘要:
https://www.cnblogs.com/coder2012/p/4437237.html 阅读全文
摘要:
#!/usr/bin/python# encoding: utf-8import logginglogger=logging.getLogger("simple_example")logger.setLevel(logging.DEBUG)fh=logging.FileHandler("spam.l 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <canvas id="mycanvas" width="520px" height="1314px"> </canvas> <scr 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> .box1{ width: 200px; height: 100px; position: relative; border: 1px dashed 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> .shadow { box-shadow:5px 5px 5px red; width: 200px; height: 100px; backgro 阅读全文
摘要:
<!DOCTYPE html><html><!-- td 表示列 table表示表格--><!-- padding 表示填充/所占的空间大小或比例--><!--设置表格的边框是否被合并为一个单一的边框:collapse 表示合成一个边框--> <head> <meta charset="UTF-8" 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>实验楼</title> </head> <body> <header> <h1>This Is Header</h1> </header> <nav> <ul> <li><a hre 阅读全文
摘要:
</doctype html><html> <head> <meta charset="UTF-8"> <title></title> </head> <h1>我是标题</h1> <p>我是段落</p> <body> <table border="1" width="300px" height="1 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <!-- 表示支持中文--> <title>my page</title> </head> <body> < 阅读全文