摘要:
分库分表是什么 下边以电商系统中的例子来说明,下图是电商系统卖家模块的表结构: 通过以下SQL能够获取到商品相关的店铺信息、地理区域信息: SELECT p.*,r.[地理区域名称],s.[店铺名称],s.[信誉] FROM [商品信息] p LEFT JOIN [地理区域] r ON p.[产地] 阅读全文
摘要:
the first step:Open cmd in windows; and then input: netstat -ano(search all thread with port); the next step: netstat -aon|findstr "port"; or use the 阅读全文
摘要:
Description:Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string i 阅读全文