摘要:
using System.Collections; using System.Collections.Generic; using UnityEngine; public class BloodControll : MonoBehaviour { public string playerName = 阅读全文
摘要:
class Program { //public const char[] _specialStrings = { '☆', '★', '○', '●', '◎', '◇', '◆', '□', '■', '△', '▲', '※' }; public class Row { public int Id {... 阅读全文
摘要:
删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录 delete from people where peopleName in (select peopleName from people group by peopleName having co 阅读全文