在我的数据库中,我有一个名为约会的表,我有id,name of the buyer,time when I made appointment and time for the appointment
。所以我的问题是如何让mariadb
向我展示datesandtime
time when I made appointment
之后约会的日期和时间var config1 = new ServerConfig();
config1.Ip = brokerIP;
config1.Port = brokerPort;
config1.Security = "Tls";
config1.Certificate = new CertificateConfig
{
FilePath = @"C:\java_cer\certificate.pfx",
ClientCertificateRequired = true
};
//start user sessions listener
if (_brokerServer.Setup(config1))
{
if (!_brokerServer.Start())
{
result = "Failed to setup user listener";
}
}
else
{
result = "Failed to start user listener";
}
。因为您无法预约在我预约日期之前购买的东西。
答案 0 :(得分:0)
您可以使用php代码在创建表时无法验证数据,您必须在插入时验证数据。您可以设置列的大小和列的类型。在MSSQL或Oracal中,有一些触发器可以在数据库级别处理这个问题,但是在mysql中不确定你是不是在做好事。