摘要:
using System;using System.Configuration;using System.Data;using System.Data.SqlClient;using Constant;namespace Dal{ /// /// This class can not ... 阅读全文
摘要:
一、模糊查询1、采用“_”、“%”通配符进行查询select * from Students where stu_name like '张_';--一个‘_’表示一个字符select * from Students where stu_name like '张__'select * from Stu... 阅读全文