摘要:
public String getInputMessage() throws IOException { System.out.println("请输入您的命令∶"); byte buffer[]=new byte[1024]; int count=System.in.read(buffer); c 阅读全文
摘要:
通过字段名 获得表名SELECT sb.name FROM syscolumns s JOIN sysobjects sb ON s.id=sb.idWHERE s.name='你的字段名' left join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录right join(右联接 阅读全文