SQL语句-判断数据库中是否有这张表
时间:2021-04-22 16:12:38
收藏:0
阅读:0
方法1
select count(1) from sys.objects where name = ‘student‘
方法2
SELECT table_name FROM information_schema.TABLES WHERE table_name =‘student‘
程序员阿飞
2021年4月21日
评论(0)