Toggle navigation
Home
New Query
Recent Queries
Discuss
Database tables
Database names
MediaWiki
Wikibase
Replicas browser and optimizer
Login
History
Fork
This query is marked as a draft
This query has been published
by
Respice post te
.
Toggle Highlighting
SQL
use strict; use warnings; use DBI; # 미디어위키 데이터베이스 연결 정보 설정 my $host = 'your_database_host'; # 데이터베이스 호스트 my $dbname = 'your_database_name'; # 데이터베이스 이름 my $user = 'your_database_user'; # 데이터베이스 사용자 my $password = 'your_database_password'; # 데이터베이스 암호 # 데이터베이스 연결 my $dbh = DBI->connect("DBI:mysql:database=$dbname;host=$host", $user, $password, { RaiseError => 1 }); # SQL 쿼리 실행: '<references/>'를 포함하는 문서를 찾음 my $sql = "SELECT page_title FROM page_content WHERE page_content LIKE '%<references/>%'"; my $sth = $dbh->prepare($sql); $sth->execute(); # 결과 출력 while (my $row = $sth->fetchrow_hashref()) { print "문서 제목: " . $row->{'page_title'} . "\n"; } # 데이터베이스 연결 종료 $sth->finish(); $dbh->disconnect();
By running queries you agree to the
Cloud Services Terms of Use
and you irrevocably agree to release your SQL under
CC0 License
.
Submit Query
Stop Query
All SQL code is licensed under
CC0 License
.
Checking query status...